/* ============================================================
   D Zone Digital — Modern Design System
   Inspired by Revelator, EVEARA, enarumusic, Ditto Music
   ============================================================ */

:root {
    --dz-bg: #09090b;
    --dz-bg-elevated: #111113;
    --dz-surface: #18181b;
    --dz-surface-hover: #27272a;
    --dz-border: rgba(255, 255, 255, 0.08);
    --dz-border-strong: rgba(255, 255, 255, 0.14);

    --dz-text: #fafafa;
    --dz-text-muted: #a1a1aa;
    --dz-text-subtle: #71717a;

    /* Modern indigo-violet-sky palette */
    --dz-indigo: #6366f1;
    --dz-violet: #8b5cf6;
    --dz-blue: #3b82f6;
    --dz-sky: #38bdf8;
    --dz-rose: #f472b6;
    --dz-emerald: #34d399;

    --dz-neon-magenta: #a78bfa;
    --dz-neon-cyan: #67e8f9;
    --dz-electric-violet: #818cf8;
    --dz-hot-coral: #fb7185;
    --dz-neon-gold: #fcd34d;

    --dz-primary: var(--dz-violet);
    --dz-primary-light: #a78bfa;
    --dz-primary-dark: #7c3aed;
    --dz-accent: var(--dz-sky);
    --dz-accent-warm: var(--dz-rose);

    --dz-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #38bdf8 100%);
    --dz-gradient-vivid: linear-gradient(135deg, #818cf8 0%, #a78bfa 40%, #38bdf8 100%);
    --dz-gradient-text: linear-gradient(135deg, #a5b4fc 0%, #c4b5fd 45%, #7dd3fc 100%);
    --dz-gradient-warm: linear-gradient(135deg, #818cf8 0%, #a78bfa 50%, #38bdf8 100%);
    --dz-gradient-surface: linear-gradient(180deg, rgba(99, 102, 241, 0.06) 0%, rgba(56, 189, 248, 0.03) 50%, transparent 100%);
    --dz-gradient-glow: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.12), transparent 65%);

    --dz-radius-sm: 8px;
    --dz-radius: 14px;
    --dz-radius-lg: 20px;
    --dz-radius-xl: 28px;
    --dz-radius-full: 9999px;

    --dz-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --dz-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
    --dz-shadow-glow: 0 0 40px rgba(99, 102, 241, 0.12);
    --dz-shadow-cyan: 0 0 30px rgba(56, 189, 248, 0.1);

    --dz-font-display: "Syne", "Bricolage Grotesque", sans-serif;
    --dz-font-body: "Inter", "Poppins", sans-serif;

    --dz-header-height: 96px;
    --dz-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

    /* Hero spacing scale — fits first fold across viewports */
    --hero-pad-y: clamp(12px, 2vh, 28px);
    --hero-gap-col: clamp(20px, 3.5vw, 44px);
    --hero-gap-block: clamp(12px, 2vh, 24px);
    --hero-headline-size: clamp(2.125rem, 4.2vw + 0.5rem, 3.75rem);
}

/* ---- Base ---- */
body {
    background-color: var(--dz-bg) !important;
    color: var(--dz-text);
    font-family: var(--dz-font-body) !important;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: var(--dz-gradient-glow);
    pointer-events: none;
    z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--dz-font-display) !important;
    color: var(--dz-text);
    letter-spacing: -0.02em !important;
    font-weight: 700 !important;
}

p {
    color: var(--dz-text-muted) !important;
    font-family: var(--dz-font-body) !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
}

main {
    position: relative;
    z-index: 1;
}

/* ---- Header ---- */
.web-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--dz-transition);
}

.web-header.scrolled {
    padding: 10px 0;
    background: rgba(9, 9, 11, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dz-border);
}

.web-header-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.web-header .navbar-brand img {
    height: 68px;
    width: auto;
    max-height: 68px;
}

@media (max-width: 575px) {
    :root {
        --dz-header-height: 80px;
    }

    .web-header .navbar-brand img {
        height: 52px;
        max-height: 52px;
    }
}

.web-header .navbar {
    position: relative;
    align-items: center;
}

.header-navbar {
    width: auto !important;
    flex-grow: 1 !important;
    background: transparent !important;
    padding: 0 !important;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

@media (min-width: 992px) {
    .header-navbar .navbar-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
    }

    .header-actions {
        margin-left: auto;
    }
}

.web-header .nav-item .nav-link {
    font-size: 15px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    color: var(--dz-text-muted) !important;
    padding: 10px 16px !important;
    border-radius: var(--dz-radius-sm);
    transition: var(--dz-transition);
}

.web-header .nav-item .nav-link:hover,
.web-header .nav-item.curent > .nav-link {
    color: var(--dz-text) !important;
    background: rgba(255, 255, 255, 0.05);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 12px;
}

@media (max-width: 991px) {
    .header-navbar .navbar-nav {
        position: static;
        transform: none;
    }
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dz-text-muted);
    border-radius: var(--dz-radius-full);
    border: 1px solid var(--dz-border);
    background: transparent;
    transition: var(--dz-transition);
}

.btn-ghost:hover {
    color: var(--dz-text);
    border-color: var(--dz-border-strong);
    background: rgba(255, 255, 255, 0.04);
}

.start-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    line-height: 1.4 !important;
    color: #fff !important;
    background: var(--dz-gradient) !important;
    border: none !important;
    border-radius: var(--dz-radius-full) !important;
    box-shadow: var(--dz-shadow-glow);
    transition: var(--dz-transition) !important;
}

.start-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.3);
    color: #fff !important;
}

/* Mega menu */
.mega-sub-menu {
    top: calc(100% + 8px) !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(8px) !important;
    width: min(720px, 92vw) !important;
    background: var(--dz-surface) !important;
    border: 1px solid var(--dz-border) !important;
    border-radius: var(--dz-radius-lg) !important;
    padding: 24px !important;
    box-shadow: var(--dz-shadow-lg) !important;
    opacity: 0;
    visibility: hidden;
}

@media (min-width: 992px) {
    .web-header .navbar .navbar-nav .nav-item:hover .mega-sub-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) translateY(0) !important;
    }
}

.mega-sub-menu-box h4.title,
.mega-sub-menu-box p.title {
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em !important;
    color: var(--dz-primary-light) !important;
    margin-bottom: 12px !important;
}

.mega-sub-menu-box h4.title {
    font-size: 18px !important;
    text-transform: none;
    letter-spacing: -0.02em !important;
    color: var(--dz-text) !important;
}

.mega-sub-menu-box p {
    color: var(--dz-text-subtle) !important;
    font-size: 14px !important;
}

.mega-sub-menu-list li a {
    color: var(--dz-text-muted) !important;
    padding: 8px 12px !important;
    border-radius: var(--dz-radius-sm);
    font-size: 14px !important;
    font-weight: 500;
    transition: var(--dz-transition);
}

.mega-sub-menu-list li a:hover {
    color: var(--dz-text) !important;
    background: rgba(99, 102, 241, 0.1);
}

/* ---- Buttons ---- */
.started-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    line-height: 1.4 !important;
    color: #fff !important;
    background: var(--dz-gradient) !important;
    border: none !important;
    border-radius: var(--dz-radius-full) !important;
    box-shadow: var(--dz-shadow-glow);
    transition: var(--dz-transition) !important;
    position: relative;
    overflow: hidden;
}

.started-btn::after {
    display: none !important;
}

.started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.35);
    color: #fff !important;
}

.started-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dz-text);
    background: transparent;
    border: 1px solid var(--dz-border-strong);
    border-radius: var(--dz-radius-full);
    transition: var(--dz-transition);
}

.started-btn-outline:hover {
    border-color: var(--dz-primary);
    background: rgba(99, 102, 241, 0.08);
    color: var(--dz-text);
}

/* ---- Hero / Banner ---- */
.homePageBody {
    background: var(--dz-bg) !important;
    background-image: none !important;
}

.banner-sec {
    padding: calc(var(--dz-header-height) + 60px) 0 60px !important;
    position: relative;
    overflow: hidden;
    background: #000;
}

.homePageBody .banner-sec {
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: calc(var(--dz-header-height) + var(--hero-pad-y) + 24px) 0 calc(var(--hero-pad-y) + 32px) !important;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: var(--hero-gap-col);
    align-items: center;
    width: 100%;
}

.banner-sec .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(14px, 2.2vh, 24px);
}

.hero-content.banner-inner {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
    text-align: left;
}

.hero-noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    mix-blend-mode: overlay;
}

.hero-beams {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-beam {
    position: absolute;
    width: 1px;
    height: 140%;
    top: -20%;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.15), transparent);
    transform-origin: top center;
}

.hero-beam--1 {
    left: 22%;
    transform: rotate(12deg);
    animation: heroBeamPulse 8s ease-in-out infinite;
}

.hero-beam--2 {
    right: 18%;
    transform: rotate(-8deg);
    animation: heroBeamPulse 10s ease-in-out infinite reverse;
    animation-delay: -3s;
}

.hero-spotlight {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 50% at 30% 42%, rgba(99, 102, 241, 0.2) 0%, transparent 68%),
        radial-gradient(ellipse 50% 45% at 72% 38%, rgba(139, 92, 246, 0.15) 0%, transparent 65%),
        radial-gradient(ellipse 45% 35% at 20% 60%, rgba(56, 189, 248, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 80% 55%, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

.banner-inner {
    width: 100% !important;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.label-sec {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1) !important;
    background-image: none !important;
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: var(--dz-radius-full) !important;
    padding: 8px 18px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase;
    color: var(--dz-primary-light) !important;
    margin-bottom: 20px !important;
}

.hero-badge {
    position: relative;
    gap: 10px !important;
    padding: 8px 16px !important;
    margin-bottom: var(--hero-gap-block) !important;
    background: rgba(99, 102, 241, 0.12) !important;
    border: 1px solid rgba(139, 92, 246, 0.35) !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 8px 32px rgba(99, 102, 241, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}

.hero-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.1) 50%, transparent 65%);
    transform: translateX(-120%);
    animation: heroBtnShine 5s ease-in-out infinite;
    pointer-events: none;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a78bfa;
    box-shadow: 0 0 12px rgba(167, 139, 250, 0.8);
    flex-shrink: 0;
    animation: heroBadgePulse 2s ease-in-out infinite;
}

.label-sec i {
    font-size: 16px;
    color: #c4b5fd;
}

.hero-headline,
.banner-inner h1 {
    font-size: var(--hero-headline-size) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.035em !important;
    text-transform: none !important;
    font-weight: 800 !important;
    margin-bottom: var(--hero-gap-block) !important;
    color: var(--dz-text) !important;
    text-shadow: 0 0 80px rgba(99, 102, 241, 0.15);
}

.hero-headline-line {
    display: block;
}

/* Undo legacy ".banner-inner h1 span" transparent text fill */
.banner-inner h1 .hero-headline-line,
.banner-inner h1 .hero-headline-line .hero-rotate-word {
    -webkit-text-fill-color: currentColor !important;
    color: var(--dz-text);
}

.banner-inner h1 .hero-headline-line .hero-rotate-word {
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
}

.hero-headline .hero-gradient-text {
    display: block;
    margin-top: 2px;
}

.hero-gradient-text,
.banner-inner h1 .gradient-text,
.banner-inner h1 span.r,
.banner-inner h1 span.o,
.banner-inner h1 span.w {
    background: linear-gradient(135deg, #a5b4fc 0%, #c4b5fd 30%, #7dd3fc 60%, #a78bfa 100%) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: heroGradientShift 6s ease-in-out infinite;
    filter: drop-shadow(0 0 24px rgba(129, 140, 248, 0.35));
}

.hero-subtext,
.banner-inner p {
    font-size: clamp(15px, 1.6vw, 17px) !important;
    line-height: 1.65 !important;
    color: #d4d4d8 !important;
    max-width: 520px;
    margin: 0 0 var(--hero-gap-block) !important;
}

.hero-content .hero-subtext {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    margin-bottom: clamp(12px, 1.8vh, 20px);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    margin-bottom: 0;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dz-text-muted);
}

.hero-trust-item i {
    font-size: 15px;
    color: #34d399;
}

.hero-trust-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.hero-cta-primary {
    padding: 14px 26px !important;
    font-size: 15px !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 8px 32px rgba(99, 102, 241, 0.35),
        0 0 48px rgba(139, 92, 246, 0.2) !important;
}

.hero-cta-primary i {
    transition: transform 0.25s ease;
}

.hero-cta-primary:hover i {
    transform: translateX(4px);
}

.hero-cta-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.22) 50%, transparent 60%);
    transform: translateX(-120%);
    animation: heroBtnShine 4s ease-in-out infinite;
}

.hero-cta-secondary {
    padding: 14px 24px;
    font-size: 15px;
    border-color: rgba(255, 255, 255, 0.22) !important;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-cta-secondary:hover {
    border-color: rgba(167, 139, 250, 0.5) !important;
    background: rgba(99, 102, 241, 0.1) !important;
    box-shadow: 0 0 24px rgba(99, 102, 241, 0.12);
}

/* Stats row — full-width bar below hero split */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(8px, 1.2vw, 12px);
    max-width: 100%;
    margin: 0;
    padding-top: 0;
    border-top: none;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: clamp(10px, 1.5vh, 14px) clamp(12px, 1.5vw, 16px);
    border-radius: var(--dz-radius);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--dz-transition);
}

.hero-stat-body {
    min-width: 0;
}

.hero-stat:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(99, 102, 241, 0.08);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2), 0 0 20px rgba(99, 102, 241, 0.08);
}

.hero-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: clamp(36px, 4.5vh, 40px);
    height: clamp(36px, 4.5vh, 40px);
    border-radius: 12px;
    margin-bottom: 0;
    font-size: 18px;
}

.hero-stat-icon--violet {
    background: rgba(139, 92, 246, 0.18);
    color: #c4b5fd;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.hero-stat-icon--cyan {
    background: rgba(56, 189, 248, 0.18);
    color: #67e8f9;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.hero-stat-icon--indigo {
    background: rgba(99, 102, 241, 0.18);
    color: #a5b4fc;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.hero-stat-icon--sky {
    background: rgba(125, 211, 252, 0.15);
    color: #7dd3fc;
    box-shadow: 0 0 20px rgba(125, 211, 252, 0.18);
}

.hero-stat-value {
    display: block;
    font-family: var(--dz-font-display);
    font-size: clamp(20px, 2.5vh, 26px);
    font-weight: 800;
    color: var(--dz-text);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-stat-value span {
    background: var(--dz-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--dz-text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 2px;
}

/* ---- Hero dashboard mockup ---- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0;
    max-height: min(52vh, 460px);
}

.hero-mockup {
    position: relative;
    width: 100%;
    max-width: clamp(300px, 38vw, 420px);
    animation: heroMockupFloat 6s ease-in-out infinite;
    transform-origin: center center;
}

.hero-mockup-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.25) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.hero-mockup-card {
    position: relative;
    z-index: 1;
    border-radius: var(--dz-radius-xl);
    background: rgba(17, 17, 19, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 24px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(99, 102, 241, 0.12);
    overflow: hidden;
}

.hero-mockup-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(56, 189, 248, 0.2), rgba(139, 92, 246, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-mockup-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.hero-mockup-dots {
    display: flex;
    gap: 6px;
}

.hero-mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.hero-mockup-dots span:nth-child(1) { background: #f87171; }
.hero-mockup-dots span:nth-child(2) { background: #fbbf24; }
.hero-mockup-dots span:nth-child(3) { background: #34d399; }

.hero-mockup-title {
    flex: 1;
    font-size: 12px;
    font-weight: 600;
    color: var(--dz-text-muted);
    letter-spacing: 0.02em;
}

.hero-mockup-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #34d399;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-mockup-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.8);
    animation: heroBadgePulse 2s ease-in-out infinite;
}

.hero-mockup-body {
    padding: 18px;
}

.hero-mockup-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.hero-mockup-metric {
    padding: 12px 10px;
    border-radius: var(--dz-radius);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-mockup-metric-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: var(--dz-text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.hero-mockup-metric-value {
    display: block;
    font-family: var(--dz-font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--dz-text);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-mockup-metric-trend {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 10px;
    font-weight: 600;
    margin-top: 4px;
}

.hero-mockup-metric-trend--up {
    color: #34d399;
}

.hero-mockup-chart {
    padding: 14px;
    border-radius: var(--dz-radius);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 14px;
}

.hero-mockup-chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px;
    height: 72px;
    margin-bottom: 8px;
}

.hero-mockup-chart-bars span {
    flex: 1;
    height: var(--h, 50%);
    border-radius: 4px 4px 2px 2px;
    background: linear-gradient(180deg, #a78bfa 0%, #6366f1 100%);
    opacity: 0.85;
    animation: heroChartBar 2.4s ease-in-out infinite;
    transform-origin: bottom;
}

.hero-mockup-chart-bars span:nth-child(1) { animation-delay: 0s; }
.hero-mockup-chart-bars span:nth-child(2) { animation-delay: 0.15s; }
.hero-mockup-chart-bars span:nth-child(3) { animation-delay: 0.3s; }
.hero-mockup-chart-bars span:nth-child(4) { animation-delay: 0.1s; }
.hero-mockup-chart-bars span:nth-child(5) { animation-delay: 0.25s; }
.hero-mockup-chart-bars span:nth-child(6) { animation-delay: 0.05s; }
.hero-mockup-chart-bars span:nth-child(7) { animation-delay: 0.2s; }
.hero-mockup-chart-bars span:nth-child(8) { animation-delay: 0.35s; }

.hero-mockup-chart-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--dz-text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-mockup-releases {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-mockup-release {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--dz-radius);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--dz-transition);
}

.hero-mockup-release:hover {
    background: rgba(99, 102, 241, 0.06);
    border-color: rgba(139, 92, 246, 0.2);
}

.hero-mockup-release-art {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(99, 102, 241, 0.2));
    color: #c4b5fd;
    font-size: 18px;
    flex-shrink: 0;
}

.hero-mockup-release-art--alt {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(99, 102, 241, 0.15));
    color: #7dd3fc;
}

.hero-mockup-release-info {
    flex: 1;
    min-width: 0;
}

.hero-mockup-release-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dz-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-mockup-release-meta {
    display: block;
    font-size: 11px;
    color: var(--dz-text-subtle);
    margin-top: 2px;
}

.hero-mockup-release-status {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 8px;
    border-radius: var(--dz-radius-full);
    flex-shrink: 0;
}

.hero-mockup-release-status--live {
    color: #34d399;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.25);
}

.hero-mockup-release-status--pending {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.hero-float-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--dz-radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--dz-text);
    background: rgba(17, 17, 19, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 20px rgba(99, 102, 241, 0.1);
    white-space: nowrap;
    z-index: 2;
}

.hero-float-card i {
    font-size: 16px;
    color: #a78bfa;
}

.hero-float-card--1 {
    top: 8%;
    right: -8%;
    animation: heroFloatCard1 5s ease-in-out infinite;
}

.hero-float-card--2 {
    bottom: 28%;
    left: -12%;
    animation: heroFloatCard2 6s ease-in-out infinite;
}

.hero-float-card--2 i {
    color: #38bdf8;
}

.hero-float-card--3 {
    bottom: 6%;
    right: -4%;
    animation: heroFloatCard3 7s ease-in-out infinite;
}

.hero-float-card--3 i {
    color: #34d399;
}

.hero-scroll-hint {
    position: absolute;
    bottom: clamp(8px, 1.5vh, 16px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--dz-text-subtle);
    text-decoration: none;
    transition: color 0.25s ease;
}

.hero-scroll-hint:hover {
    color: var(--dz-text-muted);
}

.hero-scroll-hint-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-scroll-hint-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    animation: heroScrollBounce 2s ease-in-out infinite;
}

.hero-scroll-hint-icon i {
    font-size: 14px;
}

/* Home hero stagger overrides */
.homePageBody .hero-content.reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.homePageBody .hero-content.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.homePageBody .hero-content.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.homePageBody .hero-content.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.homePageBody .hero-content.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.homePageBody .hero-content.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }

.homePageBody .hero-content.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.homePageBody .hero-visual.reveal {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.homePageBody .hero-visual.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Short viewport — keep hero in first fold */
@media (max-height: 860px) and (min-width: 992px) {
    :root {
        --hero-headline-size: clamp(1.875rem, 3.5vw + 0.25rem, 2.75rem);
        --hero-gap-block: clamp(8px, 1.4vh, 16px);
    }

    .homePageBody .banner-sec {
        padding-bottom: calc(var(--hero-pad-y) + 28px) !important;
    }

    .hero-mockup-body {
        padding: 12px 14px 14px;
    }

    .hero-mockup-metrics {
        gap: 8px;
    }

    .hero-mockup-release {
        padding: 8px 10px;
    }

    .hero-float-card {
        padding: 8px 12px;
        font-size: 11px;
    }

    .hero-scroll-hint {
        display: none;
    }
}

@media (max-height: 720px) and (min-width: 992px) {
    .hero-trust {
        display: none;
    }

    .hero-mockup-releases {
        display: none;
    }

    .hero-stats {
        gap: 8px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
        gap: clamp(16px, 2.5vw, 28px);
    }

    .hero-mockup {
        max-width: clamp(280px, 34vw, 360px);
    }
}

/* ---- Platform marquee ---- */
.platforms-sec {
    padding: 40px 0 60px;
    border-bottom: 1px solid var(--dz-border);
}

.platforms-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dz-text-subtle);
    margin-bottom: 28px;
}

.platform-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.platform-track {
    display: flex;
    gap: 20px;
    animation: marquee 40s linear infinite;
    width: max-content;
    align-items: center;
}

.platform-track span.platform-pill {
    opacity: 1;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- Dashboard preview ---- */
.big-img-sec {
    padding: 40px 0 80px !important;
    position: relative;
}

.big-img-inner {
    position: relative;
    border-radius: var(--dz-radius-xl);
    overflow: hidden;
    border: 1px solid var(--dz-border);
    box-shadow: var(--dz-shadow-lg), var(--dz-shadow-glow);
    background: var(--dz-surface);
}

.big-img-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.big-left-img,
.big-right-img,
.big-top-img {
    display: none !important;
}

.big-img-inner #big-img,
.big-img-inner .w-100 {
    display: block;
    width: 100%;
    border-radius: var(--dz-radius-xl);
}

/* ---- Global Music Distribution ---- */
.distribute-sec {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
    background: #000;
    isolation: isolate;
}

.distribute-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.distribute-glow {
    position: absolute;
    top: 50%;
    right: 8%;
    width: min(520px, 55vw);
    height: min(420px, 70%);
    transform: translateY(-50%);
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.14) 0%, rgba(139, 92, 246, 0.06) 45%, transparent 72%);
    filter: blur(40px);
}

.distribute-waves {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: min(60%, 420px);
    min-height: 260px;
    overflow: hidden;
}

.distribute-waves-motion {
    width: 130%;
    height: 100%;
    margin-left: -15%;
    will-change: transform;
}

.distribute-waves-motion svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.distribute-wave {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.distribute-wave--1 {
    stroke: url(#distribute-wave-grad-1);
    stroke-width: 2.5;
    filter: drop-shadow(0 0 16px rgba(139, 92, 246, 0.6));
}

.distribute-wave--2 {
    stroke: url(#distribute-wave-grad-2);
    stroke-width: 2.25;
    filter: drop-shadow(0 0 14px rgba(56, 189, 248, 0.55));
}

.distribute-wave--3 {
    stroke: url(#distribute-wave-grad-3);
    stroke-width: 2.25;
    filter: drop-shadow(0 0 14px rgba(251, 191, 36, 0.5));
}

.distribute-wave--4 {
    stroke: url(#distribute-wave-grad-4);
    stroke-width: 2;
    opacity: 0.9;
}

.distribute-wave--5 {
    stroke: url(#distribute-wave-grad-2);
    stroke-width: 1.75;
    opacity: 0.8;
}

.distribute-wave--6 {
    stroke: url(#distribute-wave-grad-1);
    stroke-width: 1.75;
    opacity: 0.75;
}

.distribute-sec .container {
    position: relative;
    z-index: 1;
}

.distribute-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: 420px;
}

.distribute-content {
    max-width: 560px;
}

.distribute-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--dz-text-muted);
    margin-bottom: 28px;
}

.distribute-label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dz-violet);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.5);
    flex-shrink: 0;
}

.distribute-headline {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.03em !important;
    font-weight: 800 !important;
    color: var(--dz-text) !important;
    margin-bottom: 24px !important;
    text-transform: none !important;
}

.distribute-highlight {
    color: #c4b5fd !important;
    background: none !important;
    -webkit-text-fill-color: #c4b5fd !important;
}

.distribute-content p {
    font-size: 17px !important;
    line-height: 1.75 !important;
    color: var(--dz-text-muted) !important;
    max-width: 520px;
    margin-bottom: 36px !important;
}

.distribute-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.distribute-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    font-family: var(--dz-font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--dz-radius-full);
    transition: var(--dz-transition);
    text-decoration: none;
    white-space: nowrap;
}

.distribute-btn--primary {
    color: #fff !important;
    background: var(--dz-gradient);
    border: 2px solid transparent;
    box-shadow: var(--dz-shadow-glow);
}

.distribute-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.35);
    color: #fff !important;
}

.distribute-btn--outline {
    color: var(--dz-text) !important;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.distribute-btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    color: var(--dz-text) !important;
    transform: translateY(-2px);
}

.distribute-platforms {
    position: relative;
    height: 460px;
    min-height: 380px;
    z-index: 2;
}

.distribute-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(18, 18, 22, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    will-change: transform;
}

.distribute-icon::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 55%);
    opacity: 0.45;
    pointer-events: none;
}

.distribute-icon i {
    position: relative;
    z-index: 1;
    line-height: 1;
}

.distribute-icon--xs {
    width: 52px;
    height: 52px;
    font-size: 22px;
}

.distribute-icon--sm {
    width: 64px;
    height: 64px;
    font-size: 26px;
}

.distribute-icon--md {
    width: 80px;
    height: 80px;
    font-size: 34px;
}

.distribute-icon--lg {
    width: 96px;
    height: 96px;
    font-size: 42px;
    border-radius: 26px;
}

.distribute-icon--spotify { top: 14%; left: 4%; color: #1db954; z-index: 4; }
.distribute-icon--apple { top: 28%; left: 36%; color: #fc3c44; z-index: 5; }
.distribute-icon--instagram { top: 2%; right: 12%; color: #e4405f; z-index: 3; }
.distribute-icon--facebook { top: 10%; left: 62%; color: #1877f2; font-size: 0.85em; z-index: 2; }
.distribute-icon--tiktok { top: 44%; left: 8%; color: #fff; z-index: 4; }
.distribute-icon--amazon { bottom: 18%; left: 22%; color: #ff9900; z-index: 3; }
.distribute-icon--youtube { bottom: 4%; left: 44%; color: #ff0000; z-index: 5; }
.distribute-icon--beatport { top: 6%; left: 18%; color: #94fc13; z-index: 2; }
.distribute-icon--tidal { bottom: 14%; right: 4%; color: #00ffff; z-index: 2; }
.distribute-icon--deezer { top: 54%; right: 16%; color: #8b5cf6; z-index: 3; }

@media (max-width: 991px) {
    .distribute-inner {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: center;
    }

    .distribute-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .distribute-content p {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .distribute-actions {
        justify-content: center;
    }

    .distribute-platforms {
        height: 360px;
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .distribute-sec {
        padding: 72px 0 88px;
    }

    .distribute-waves {
        left: -20%;
        right: -20%;
        height: 220px;
        min-height: 200px;
    }

    .distribute-glow {
        right: 50%;
        transform: translate(50%, -50%);
        width: 320px;
        height: 280px;
    }

    .distribute-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .distribute-btn {
        width: 100%;
    }

    .distribute-platforms {
        height: 300px;
        transform: scale(0.88);
        transform-origin: center top;
    }
}

/* ---- Section headers ---- */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dz-primary-light);
    margin-bottom: 16px;
}

.section-header h2,
.explore-header h2,
.unlock-header-left h2 {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.03em !important;
    color: var(--dz-text) !important;
    margin-bottom: 16px !important;
}

.section-header h2 span,
.unlock-header-left h2 span {
    background: var(--dz-gradient-text) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.section-header p,
.unlock-header-right p {
    font-size: 17px !important;
    color: var(--dz-text-muted) !important;
}

/* ---- Feature ecosystem grid ---- */
.ecosystem-sec {
    padding: 80px 0;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.eco-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px 24px;
    background: var(--dz-surface);
    border: 1px solid var(--dz-border);
    border-radius: var(--dz-radius-lg);
    transition: var(--dz-transition);
    text-decoration: none;
    min-height: 160px;
}

.eco-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--dz-shadow-glow), var(--dz-shadow-cyan);
    transform: translateY(-4px);
}

.eco-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--dz-radius);
    background: rgba(99, 102, 241, 0.12);
    color: var(--dz-primary-light);
    font-size: 18px;
}

.eco-card h3 {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: var(--dz-text) !important;
    margin: 0 !important;
}

.eco-card p {
    font-size: 14px !important;
    color: var(--dz-text-subtle) !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

.eco-card-arrow {
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--dz-primary-light);
    opacity: 0;
    transform: translateX(-4px);
    transition: var(--dz-transition);
}

.eco-card:hover .eco-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ---- Unlock / feature cards ---- */
.unlock-sec {
    padding: 80px 0 !important;
}

.unloack-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px;
    margin-bottom: 48px !important;
}

.unlock-header-left,
.unlock-header-right {
    width: 100% !important;
}

.unlock-box {
    height: auto !important;
    min-height: 0;
    overflow: visible !important;
    background: var(--dz-surface) !important;
    background-image: none !important;
    border: 1px solid var(--dz-border) !important;
    border-radius: var(--dz-radius-lg) !important;
    padding: 32px 28px !important;
    transition: var(--dz-transition);
    margin-bottom: 16px;
    box-sizing: border-box;
}

.unlock-box:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--dz-shadow-glow);
    transform: translateY(-4px);
}

.unlock-layer-img {
    display: none !important;
}

.unlock-box-header {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.unlock-box-header h3 {
    font-size: 20px !important;
    letter-spacing: -0.01em !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.unlock-box-header p {
    font-size: 15px !important;
    line-height: 1.55 !important;
    letter-spacing: 0 !important;
    color: var(--dz-text-subtle) !important;
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100%;
}

.unlock-header-right p {
    letter-spacing: 0 !important;
    line-height: 1.6 !important;
    word-break: break-word;
}

.unlock-box:has(.ui-mockup) .unlock-box-bottom {
    display: none;
}

.unlock-box .ui-mockup {
    margin-top: 16px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
}

.unlock-box .ui-mockup:has(.ui-portal) {
    aspect-ratio: auto;
    min-height: 200px;
}

.unlock-box-bottom img {
    position: relative !important;
    width: 100% !important;
    left: auto !important;
    top: auto !important;
    margin-top: 20px;
    border-radius: var(--dz-radius);
}

.unlock-img2,
.unlock-img3 {
    width: 100% !important;
    left: auto !important;
    top: auto !important;
}

/* ---- Alternating feature rows ---- */
.unlock2-sec {
    padding: 40px 0;
}

.unlock2-box-wrapper {
    margin-bottom: 40px !important;
    padding: 48px;
    background: var(--dz-surface);
    border: 1px solid var(--dz-border);
    border-radius: var(--dz-radius-xl);
}

.unlock2-box-wrapper:last-child {
    margin-bottom: 0 !important;
}

.unlock2-box-left h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
}

.unlock2-box-left p {
    font-size: 16px !important;
    margin-bottom: 24px !important;
}

.unlock2-box-left .started-btn {
    background: var(--dz-gradient) !important;
}

.unlock2-box-right img {
    border-radius: var(--dz-radius-lg);
    border: 1px solid var(--dz-border);
}

/* ---- Reviews section ---- */
.reviews-sec {
    position: relative;
    padding: 88px 0 96px;
    overflow: hidden;
    background: #000;
}

.reviews-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 45% at 15% 30%, rgba(99, 102, 241, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 85% 70%, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
}

.reviews-sec .section-header {
    margin-bottom: 40px;
}

.reviews-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.reviews-trust-item {
    text-align: center;
    padding: 18px 12px;
    border-radius: var(--dz-radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.reviews-trust-value {
    display: block;
    font-family: var(--dz-font-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--dz-text);
    line-height: 1.1;
}

.reviews-trust-value span {
    font-size: 0.65em;
    font-weight: 700;
    color: var(--dz-primary-light);
}

.reviews-trust-label {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--dz-text-subtle);
}

.reviews-featured {
    max-width: 900px;
    margin: 0 auto 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.review-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px 24px 24px;
    border-radius: var(--dz-radius-lg);
    background: rgba(24, 24, 27, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: var(--dz-transition);
    height: 100%;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.28);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 32px rgba(99, 102, 241, 0.08);
}

.review-card--featured {
    padding: 32px 32px 28px;
    background:
        linear-gradient(145deg, rgba(99, 102, 241, 0.14) 0%, rgba(24, 24, 27, 0.85) 55%),
        rgba(24, 24, 27, 0.9);
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.review-stars {
    display: inline-flex;
    gap: 3px;
    color: #fbbf24;
    font-size: 15px;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.35));
}

.review-quote-icon {
    font-size: 28px;
    color: rgba(167, 139, 250, 0.35);
    line-height: 1;
}

.review-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #d4d4d8;
    font-style: normal;
}

.review-card--featured .review-text {
    font-size: 17px;
    color: #e4e4e7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 4px;
}

.review-avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
}

.review-avatar--violet { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.review-avatar--cyan { background: linear-gradient(135deg, #38bdf8, #2dd4bf); }
.review-avatar--indigo { background: linear-gradient(135deg, #6366f1, #818cf8); }
.review-avatar--sky { background: linear-gradient(135deg, #7dd3fc, #38bdf8); }

.review-author-info {
    flex: 1;
    min-width: 0;
}

.review-author-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dz-text);
    margin-bottom: 2px;
}

.review-author-info span {
    display: block;
    font-size: 12px;
    color: var(--dz-text-subtle);
    line-height: 1.4;
}

.review-role-badge {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--dz-radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #c4b5fd;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.25);
    white-space: nowrap;
}

.review-card--featured .review-role-badge {
    display: inline-flex;
}

.reviews-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 8px;
}

.reviews-highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 18px;
    border-radius: var(--dz-radius);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--dz-transition);
}

.reviews-highlight:hover {
    border-color: rgba(99, 102, 241, 0.22);
    background: rgba(99, 102, 241, 0.06);
}

.reviews-highlight > i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
    color: #c4b5fd;
    background: rgba(139, 92, 246, 0.15);
}

.reviews-highlight strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dz-text);
    margin-bottom: 4px;
}

.reviews-highlight p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--dz-text-subtle);
}

@media (max-width: 991px) {
    .reviews-trust {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .reviews-highlights {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .review-card--featured .review-role-badge {
        display: none;
    }
}

@media (max-width: 575px) {
    .reviews-sec {
        padding: 72px 0 80px;
    }

    .reviews-trust-value {
        font-size: 24px;
    }

    .review-card,
    .review-card--featured {
        padding: 24px 20px 20px;
    }
}

/* ---- Made for segment ---- */
.made-for-sec {
    padding: 80px 0;
    background: var(--dz-gradient-surface);
}

.made-for-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.made-for-tab {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dz-text-muted);
    background: transparent;
    border: 1px solid var(--dz-border);
    border-radius: var(--dz-radius-full);
    cursor: pointer;
    transition: var(--dz-transition);
}

.made-for-tab.active,
.made-for-tab:hover {
    color: var(--dz-text);
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.12);
}

.made-for-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px;
    background: var(--dz-surface);
    border: 1px solid var(--dz-border);
    border-radius: var(--dz-radius-xl);
}

.made-for-panel.active {
    display: grid;
}

.made-for-panel h3 {
    font-size: 2rem !important;
    margin-bottom: 16px !important;
}

.made-for-panel ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.made-for-panel ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--dz-text-muted);
}

.made-for-panel ul li i {
    color: var(--dz-primary-light);
    margin-top: 3px;
}

/* ---- Made-for tab visuals ---- */
.made-for-visual {
    position: relative;
    width: 100%;
}

.made-for-visual-frame {
    position: relative;
    border-radius: var(--dz-radius-xl);
    overflow: hidden;
    border: 1px solid var(--dz-border);
    aspect-ratio: 4 / 3;
    min-height: 300px;
    box-shadow: var(--dz-shadow-lg);
    background: var(--dz-bg-elevated);
}

.made-for-visual-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.made-for-visual--distributors .made-for-visual-frame {
    box-shadow: var(--dz-shadow-lg), 0 0 40px rgba(99, 102, 241, 0.1);
}

.made-for-visual--labels .made-for-visual-frame {
    box-shadow: var(--dz-shadow-lg), 0 0 40px rgba(56, 189, 248, 0.08);
}

.made-for-visual--managers .made-for-visual-frame {
    box-shadow: var(--dz-shadow-lg), 0 0 40px rgba(139, 92, 246, 0.1);
}

.made-for-visual-img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.made-for-visual-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(5, 5, 8, 0.15) 0%, transparent 35%),
        linear-gradient(0deg, rgba(5, 5, 8, 0.92) 0%, rgba(5, 5, 8, 0.45) 45%, transparent 70%);
    pointer-events: none;
}

.made-for-visual-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dz-text);
    background: rgba(5, 5, 8, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--dz-radius-full);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.made-for-visual-badge i {
    font-size: 16px;
}

.made-for-visual--distributors .made-for-visual-badge i { color: var(--dz-neon-magenta); }
.made-for-visual--labels .made-for-visual-badge i { color: var(--dz-neon-cyan); }
.made-for-visual--managers .made-for-visual-badge i { color: var(--dz-electric-violet); }

.made-for-visual-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: space-around;
    gap: 12px;
    padding: 20px 16px;
}

.made-for-visual-stat {
    flex: 1;
    text-align: center;
    padding: 14px 10px;
    background: rgba(5, 5, 8, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--dz-radius);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: var(--dz-transition);
}

.made-for-visual-stat strong {
    display: block;
    font-family: var(--dz-font-display);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    background: var(--dz-gradient-vivid);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.made-for-visual-stat span {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(248, 250, 252, 0.7);
}

.made-for-visual-frame::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 80%;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.made-for-visual--distributors .made-for-visual-frame::after {
    background: var(--dz-neon-magenta);
}

.made-for-visual--labels .made-for-visual-frame::after {
    background: var(--dz-neon-cyan);
}

.made-for-visual--managers .made-for-visual-frame::after {
    background: var(--dz-electric-violet);
}

.made-for-panel:hover .made-for-visual-img {
    transform: scale(1.04);
}

@media (max-width: 991px) {
    .made-for-visual {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        min-width: 0;
    }

    .made-for-panel {
        overflow-x: hidden;
    }

    .made-for-panel > * {
        min-width: 0;
        max-width: 100%;
    }

    .made-for-visual-frame,
    .made-for-visual-img {
        width: 100% !important;
        max-width: 100% !important;
    }

    .made-for-panel p,
    .made-for-panel h3,
    .made-for-panel ul,
    .made-for-panel .started-btn {
        max-width: 100%;
        width: auto;
        box-sizing: border-box;
    }
}

@media (max-width: 575px) {
    .made-for-visual-stats {
        flex-direction: column;
        gap: 8px;
        padding: 16px;
    }

    .made-for-visual-stat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 12px 16px;
    }

    .made-for-visual-stat strong {
        font-size: 20px;
    }

    .made-for-visual-stat span {
        margin-top: 0;
    }
}

/* ---- Explore boxes (feature pages) ---- */
.explore-sec {
    padding: 80px 0 !important;
}

.explore-header h2 {
    text-align: center;
    margin-bottom: 48px !important;
}

.explore-box-inner {
    height: auto !important;
    min-height: 140px;
    border-radius: var(--dz-radius-lg) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--dz-transition);
}

.explore-box-inner:hover {
    transform: translateY(-4px);
    box-shadow: var(--dz-shadow);
}

.explore-box-inner h4 {
    font-size: 16px !important;
    font-weight: 700 !important;
}

/* ---- CTA / Expand ---- */
.expand-sec {
    padding: 40px 0 100px !important;
}

.expand-box {
    background: var(--dz-surface) !important;
    background-image: none !important;
    border: 1px solid var(--dz-border);
    border-radius: var(--dz-radius-xl) !important;
    padding: 72px 48px !important;
    position: relative;
    overflow: hidden;
}

.expand-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.12) 0%, rgba(56, 189, 248, 0.04) 50%, transparent 70%);
    pointer-events: none;
}

.expand-box h2 {
    font-size: clamp(2rem, 4vw, 2.75rem) !important;
    position: relative;
}

.expand-box p {
    font-size: 18px !important;
    position: relative;
}

.expand-box .started-btn {
    position: relative;
}

/* ---- Footer ---- */
.web-footer {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid var(--dz-border);
    background: linear-gradient(180deg, var(--dz-bg-elevated) 0%, var(--dz-bg) 100%);
}

/* Animated footer background */
.footer-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.footer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.4;
    animation: footerOrbFloat 14s ease-in-out infinite;
}

.footer-orb--1 {
    width: 380px;
    height: 380px;
    background: var(--dz-neon-magenta);
    top: -120px;
    left: -80px;
}

.footer-orb--2 {
    width: 320px;
    height: 320px;
    background: var(--dz-neon-cyan);
    bottom: -80px;
    right: -60px;
    animation-delay: -5s;
}

.footer-orb--3 {
    width: 260px;
    height: 260px;
    background: var(--dz-electric-violet);
    top: 40%;
    left: 45%;
    animation-delay: -9s;
    opacity: 0.25;
}

@keyframes footerOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(24px, -18px) scale(1.08); }
}

.footer-wave {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
    opacity: 0.2;
}

.footer-wave-bar {
    width: 3px;
    border-radius: 3px;
    background: var(--dz-gradient-vivid);
    animation: waveBar 1.4s ease-in-out infinite;
}

.footer-wave-bar:nth-child(odd) { height: 16px; }
.footer-wave-bar:nth-child(even) { height: 28px; animation-delay: 0.15s; }
.footer-wave-bar:nth-child(3n) { height: 36px; animation-delay: 0.25s; }
.footer-wave-bar:nth-child(4n) { height: 20px; animation-delay: 0.08s; }
.footer-wave-bar:nth-child(5n) { height: 32px; animation-delay: 0.32s; }

.footer-notes {
    position: absolute;
    inset: 0;
}

.footer-notes i {
    position: absolute;
    font-size: 20px;
    opacity: 0.12;
    color: var(--dz-neon-cyan);
    animation: noteFloat 9s ease-in-out infinite;
}

.footer-notes i:nth-child(1) { top: 18%; left: 8%; color: var(--dz-neon-magenta); }
.footer-notes i:nth-child(2) { top: 28%; right: 12%; animation-delay: -2s; font-size: 24px; }
.footer-notes i:nth-child(3) { top: 55%; left: 18%; animation-delay: -4s; color: var(--dz-electric-violet); }
.footer-notes i:nth-child(4) { top: 65%; right: 20%; animation-delay: -1s; }
.footer-notes i:nth-child(5) { top: 42%; left: 55%; animation-delay: -6s; color: var(--dz-neon-gold); font-size: 18px; }

.web-footer > *:not(.footer-bg) {
    position: relative;
    z-index: 1;
}

/* Footer CTA strip */
.web-footer-cta {
    padding: 48px 0 0;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 36px 40px;
    border-radius: var(--dz-radius-xl);
    border: 1px solid rgba(99, 102, 241, 0.18);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.06) 50%, rgba(56, 189, 248, 0.04) 100%);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.06);
}

.footer-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dz-neon-magenta);
    margin-bottom: 8px;
}

.footer-cta-text h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem) !important;
    margin: 0 !important;
    color: var(--dz-text) !important;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.web-footer-top {
    padding: 64px 0 48px !important;
}

.footer-brand img {
    height: 48px;
    width: auto;
    margin-bottom: 8px;
}

.web-footer-top-left p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    max-width: 380px;
    margin-bottom: 24px !important;
}

/* Social icons — bright & branded */
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-social-btn {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid var(--dz-border-strong);
    background: rgba(255, 255, 255, 0.04);
    color: var(--dz-text) !important;
    font-size: 22px;
    transition: var(--dz-transition);
}

.footer-social-btn:hover {
    transform: translateY(-3px) scale(1.05);
    color: #fff !important;
}

.footer-social--ig:hover {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af) !important;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(221, 42, 123, 0.4);
}

.footer-social--li:hover {
    background: #0a66c2 !important;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(10, 102, 194, 0.4);
}

.footer-social--fb:hover {
    background: #1877f2 !important;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.4);
}

.footer-social--yt:hover {
    background: #ff0000 !important;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4);
}

.footer-social--x:hover {
    background: #111 !important;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.web-footer-top-heading {
    font-family: var(--dz-font-display) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em !important;
    color: var(--dz-text) !important;
    margin-bottom: 20px !important;
    position: relative;
    display: inline-block;
}

.web-footer-top-heading::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 8px;
    border-radius: 2px;
    background: var(--dz-gradient-vivid);
}

.web-footer-top-center ul li a {
    color: var(--dz-text-muted) !important;
    font-size: 14px !important;
    font-weight: 500;
    padding: 8px 0;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    transition: var(--dz-transition);
    letter-spacing: 0 !important;
}

.web-footer-top-center ul li a i {
    font-size: 16px;
    color: var(--dz-neon-cyan);
    opacity: 0.7;
    transition: var(--dz-transition);
}

.web-footer-top-center ul li a:hover {
    color: var(--dz-text) !important;
    transform: translateX(4px);
}

.web-footer-top-center ul li a:hover i {
    opacity: 1;
    color: var(--dz-neon-magenta);
}

.web-footer-bottom {
    border-top: 1px solid var(--dz-border);
    padding: 0 !important;
    background: rgba(0, 0, 0, 0.25);
}

.web-footer-inner {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
}

.footer-layer-img {
    display: none !important;
}

.web-footer-wrapper {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 22px 0 !important;
}

.web-footer-bottom-left ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    align-items: center;
}

.web-footer-bottom-left ul li {
    font-size: 13px;
    color: var(--dz-text-subtle);
    letter-spacing: 0 !important;
}

.web-footer-bottom-left ul li a {
    color: var(--dz-text-muted) !important;
    transition: var(--dz-transition);
    letter-spacing: 0 !important;
}

.web-footer-bottom-left ul li a:hover {
    color: var(--dz-neon-cyan) !important;
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dz-text-muted);
    padding: 8px 14px;
    border-radius: var(--dz-radius-full);
    border: 1px solid rgba(56, 189, 248, 0.18);
    background: rgba(56, 189, 248, 0.05);
}

.footer-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

@media (max-width: 767px) {
    .footer-cta-inner {
        padding: 28px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-cta-actions {
        width: 100%;
    }

    .footer-cta-actions .started-btn,
    .footer-cta-actions .started-btn-outline {
        flex: 1;
        text-align: center;
        justify-content: center;
    }

    .web-footer-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ---- Pricing page ---- */
.pricinng-banner-sec .banner-inner h1 {
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    text-transform: none !important;
}

.pricinngPageSec {
    padding: 80px 0 !important;
}

.nav-pills .nav-link {
    color: var(--dz-text-muted) !important;
    border: 1px solid var(--dz-border);
    border-radius: var(--dz-radius-full) !important;
    padding: 10px 24px !important;
    font-weight: 600;
    margin: 0 6px;
}

.nav-pills .nav-link.active {
    background: var(--dz-gradient) !important;
    border-color: transparent !important;
    color: #fff !important;
}

.pricingTable {
    background: var(--dz-surface) !important;
    border: 1px solid var(--dz-border) !important;
    border-radius: var(--dz-radius-xl) !important;
    overflow: hidden;
    transition: var(--dz-transition);
    height: 100%;
}

.pricingTable:hover {
    border-color: rgba(99, 102, 241, 0.35) !important;
    transform: translateY(-4px);
    box-shadow: var(--dz-shadow-glow);
}

.pricingTable-header {
    padding: 32px 28px !important;
}

.pricingTable-header .title {
    font-family: var(--dz-font-display) !important;
    font-size: 22px !important;
    color: var(--dz-text) !important;
}

.pricingTable-header .amount {
    font-family: var(--dz-font-display) !important;
    font-size: 42px !important;
    font-weight: 800 !important;
    color: var(--dz-text) !important;
}

.pricingTable-header .duration {
    color: var(--dz-text-subtle) !important;
}

.getStartedBtn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 12px 24px !important;
    background: var(--dz-gradient) !important;
    border-radius: var(--dz-radius-full) !important;
    color: #fff !important;
    font-weight: 600 !important;
    border: none !important;
    transition: var(--dz-transition);
}

.getStartedBtn:hover {
    transform: translateY(-1px);
    box-shadow: var(--dz-shadow-glow);
    color: #fff !important;
}

.pricing-content li {
    color: var(--dz-text-muted) !important;
    border-color: var(--dz-border) !important;
    padding: 12px 28px !important;
}

/* ---- FAQ ---- */
.faqSec {
    padding: 80px 0 !important;
}

.faqAccordianItem {
    background: var(--dz-surface) !important;
    border: 1px solid var(--dz-border) !important;
    border-radius: var(--dz-radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faqAccordianHeader {
    padding: 20px 24px !important;
    cursor: pointer;
}

.faqAccordianHeader .title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--dz-text) !important;
}

.faqAccordianBody {
    padding: 0 24px 20px !important;
}

.faqAccordianBody p {
    font-size: 15px !important;
}

/* ---- Animations ---- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-stat-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.hero-stat-label i {
    display: none;
}

.unlock-box-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.unlock-box-header h3 i {
    font-size: 22px;
    color: var(--dz-neon-magenta);
}

.unlock2-box-left h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.unlock2-box-left h2 i {
    font-size: 32px;
    color: var(--dz-neon-cyan);
}

.made-for-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.made-for-tab i {
    font-size: 18px;
}

.made-for-panel ul li i {
    color: var(--dz-neon-cyan);
    font-size: 18px;
    flex-shrink: 0;
}

.eco-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.platforms-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.platforms-label i {
    color: var(--dz-neon-cyan);
    font-size: 18px;
}

.started-btn i,
.start-btn i,
.btn-ghost i {
    font-size: 16px;
}

.dz-site main > section:first-child {
    scroll-margin-top: var(--dz-header-height);
}

/* Inner page heroes */
.dz-site:not(.homePageBody) .banner-sec {
    padding-top: calc(var(--dz-header-height) + 60px) !important;
}

.dz-site:not(.homePageBody) .banner-inner h1 {
    font-size: clamp(2rem, 5vw, 3.25rem) !important;
    text-transform: none !important;
}

/* ---- Mobile drawer menu ---- */
.mobile-menu-header {
    display: none;
}

@media (max-width: 991px) {
    body.menu-open {
        overflow: hidden !important;
        touch-action: none;
    }

    .web-header {
        padding: 12px 0;
    }

    .web-header .navbar-toggler {
        position: relative;
        z-index: 1060;
        width: 44px;
        height: 44px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        margin-left: auto;
        border: 0;
        padding: 0;
        background: transparent;
    }

    .web-header .nan-btn-icon {
        display: block;
        width: 22px;
        height: 2px;
        margin: 0;
        background-color: #fff;
        border-radius: 2px;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    body.menu-open .web-header .navbar-toggler {
        visibility: hidden;
        pointer-events: none;
        opacity: 0;
    }

    .web-header .menu_overlay {
        z-index: 1040 !important;
    }

    .web-header .navbar-collapse.header-navbar {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        width: min(320px, 86vw) !important;
        max-width: 320px;
        height: 100% !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
        padding: 0 !important;
        padding-top: env(safe-area-inset-top) !important;
        padding-bottom: env(safe-area-inset-bottom) !important;
        background: var(--dz-bg-elevated) !important;
        border-right: 1px solid var(--dz-border);
        box-shadow: 12px 0 40px rgba(0, 0, 0, 0.45);
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-shrink: 0;
        padding: 16px 18px;
        border-bottom: 1px solid var(--dz-border);
    }

    .mobile-menu-brand img {
        height: 40px;
        width: auto;
        display: block;
    }

    .mobile-menu-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        border: 1px solid var(--dz-border);
        border-radius: var(--dz-radius-full);
        background: rgba(255, 255, 255, 0.04);
        color: var(--dz-text);
        font-size: 20px;
        line-height: 1;
        cursor: pointer;
        transition: var(--dz-transition);
    }

    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--dz-border-strong);
        color: #fff;
    }

    .header-navbar .navbar-nav {
        position: static;
        transform: none;
        width: 100%;
        flex: 1 1 auto;
        margin: 0 !important;
        padding: 12px 14px 8px;
    }

    .web-header .nav-item .nav-link {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 12px !important;
        font-size: 16px !important;
        line-height: 1.3 !important;
        border-radius: var(--dz-radius-sm);
    }

    .web-header .nav-item.nav-item-2 > .nav-link::after {
        content: "";
        width: 8px;
        height: 8px;
        margin-left: 12px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        opacity: 0.55;
        transition: transform 0.2s ease;
        flex-shrink: 0;
    }

    .web-header .nav-item.nav-item-2.curent > .nav-link::after {
        transform: rotate(-135deg);
        opacity: 0.9;
    }

    .header-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: auto 0 0;
        padding: 16px 18px 20px;
        gap: 10px;
        border-top: 1px solid var(--dz-border);
        flex-shrink: 0;
    }

    .btn-ghost,
    .start-btn {
        width: 100%;
        text-align: center;
        min-height: 48px;
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 520px;
        margin: 0 auto;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: clamp(24px, 4vh, 36px);
    }

    .hero-content.banner-inner {
        text-align: center;
    }

    .hero-subtext {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: auto;
        max-height: none;
        max-width: min(400px, 92vw);
        margin: 0 auto;
    }

    .hero-float-card--1 {
        right: 0;
        top: 4%;
    }

    .hero-float-card--2 {
        left: 0;
    }

    .hero-float-card--3 {
        right: 0;
    }

    .hero-scroll-hint {
        display: none;
    }

    .hero-stat {
        padding: 12px 14px;
    }

    .hero-stat-value {
        font-size: 22px;
    }

    .hero-stat-icon {
        width: 36px;
        height: 36px;
        font-size: 17px;
        margin-bottom: 0;
    }

    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .made-for-panel {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }

    .unlock2-box-wrapper {
        padding: 32px 24px;
    }

    .navbar-collapse {
        background: var(--dz-bg-elevated) !important;
        border-right: 1px solid var(--dz-border);
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }

    .web-header .nav-item .nav-link {
        color: var(--dz-text-muted) !important;
    }

    .web-header .nav-item .nav-link:hover,
    .web-header .nav-item .nav-link.active,
    .web-header .nav-item.curent > .nav-link {
        color: var(--dz-text) !important;
        background: rgba(255, 255, 255, 0.05);
    }

    /* Reset desktop mega-menu positioning so mobile accordion stays visible */
    .web-header .mega-sub-menu,
    .web-header .navbar .navbar-nav .nav-item:hover .mega-sub-menu,
    .web-header .navbar .navbar-nav .nav-item.curent .mega-sub-menu {
        position: relative !important;
        top: auto !important;
        left: 0 !important;
        right: auto !important;
        transform: none !important;
        -webkit-transform: none !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 4px 0 8px !important;
        padding: 10px 8px !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid var(--dz-border) !important;
        border-radius: var(--dz-radius) !important;
        box-shadow: none !important;
        overflow: visible !important;
        z-index: 1 !important;
    }

    .web-header .mega-sub-menu {
        display: none !important;
    }

    .web-header .nav-item.curent > .mega-sub-menu {
        display: block !important;
    }

    .web-header .mega-sub-menu-inner,
    .web-header .mega-sub-menu .rowBox {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .web-header .mega-sub-menu .columnBox {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        padding: 0 !important;
    }

    .web-header .mega-sub-menu .columnBox:first-child {
        display: none !important;
    }

    .web-header .mega-sub-menu .mega-sub-menu-box {
        margin-bottom: 12px;
    }

    .web-header .mega-sub-menu .columnBox:last-child .mega-sub-menu-box,
    .web-header .mega-sub-menu .mega-sub-menu-box:last-child {
        margin-bottom: 0;
    }

    .web-header .mega-sub-menu-list {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .web-header .mega-sub-menu-list li {
        display: block !important;
        width: 100% !important;
    }

    .web-header .mega-sub-menu-list li a {
        display: block !important;
        width: 100% !important;
        padding: 10px 12px !important;
        color: var(--dz-text-muted) !important;
        white-space: normal !important;
    }

    .web-header .mega-sub-menu-list li a:hover,
    .web-header .mega-sub-menu-list li a:active {
        color: var(--dz-text) !important;
        background: rgba(99, 102, 241, 0.12);
    }
}

@media (max-width: 575px) {
    .web-header .navbar-collapse.header-navbar {
        width: min(300px, 88vw) !important;
    }

    .mobile-menu-header {
        padding: 14px 16px;
    }

    .mobile-menu-brand img {
        height: 36px;
    }

    .header-navbar .navbar-nav {
        padding: 10px 12px 6px;
    }

    .header-actions {
        padding: 14px 16px 18px;
    }

    .homePageBody .banner-sec {
        min-height: auto;
        padding: calc(var(--dz-header-height) + 16px) 0 32px !important;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        max-width: 100%;
    }

    .hero-stat {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 10px;
    }

    .hero-stat-value {
        font-size: 20px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px;
    }

    .hero-trust-divider {
        display: none;
    }

    .hero-mockup-metrics {
        grid-template-columns: 1fr;
    }

    .hero-float-card {
        display: none;
    }

    .hero-visual {
        max-width: 100%;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .started-btn,
    .started-btn-outline {
        width: 100%;
    }

    .expand-box {
        padding: 48px 24px !important;
    }
}

/* ============================================================
   Hero v2 additions — rotating word, social proof, toast, eq
   ============================================================ */

/* Rotating headline word */
.hero-rotate-word {
    display: inline-block;
    white-space: nowrap;
    padding-bottom: 0.06em;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.55), rgba(56, 189, 248, 0.55)) left bottom / 100% 0.1em no-repeat;
    transition: opacity 0.32s ease, transform 0.32s ease, filter 0.32s ease;
}

.hero-rotate-word.is-swapping {
    opacity: 0;
    transform: translateY(0.45em);
    filter: blur(6px);
}

/* Social proof row */
.hero-trust--proof {
    align-items: center;
    gap: 10px 14px;
}

.hero-avatars {
    display: inline-flex;
    align-items: center;
}

.hero-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    border: 2px solid var(--dz-bg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-avatar + .hero-avatar {
    margin-left: -9px;
}

.hero-avatar--1 { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.hero-avatar--2 { background: linear-gradient(135deg, #38bdf8, #0ea5e9); }
.hero-avatar--3 { background: linear-gradient(135deg, #818cf8, #4f46e5); }
.hero-avatar--4 { background: linear-gradient(135deg, #22d3ee, #2dd4bf); }

.hero-proof-meta {
    display: inline-flex;
    flex-direction: column;
    gap: 1px;
}

.hero-proof-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 12px;
    color: #fcd34d;
}

.hero-proof-stars strong {
    margin-left: 5px;
    font-size: 12px;
    font-weight: 700;
    color: var(--dz-text);
}

.hero-proof-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--dz-text-muted);
}

/* Topbar equalizer */
.hero-mockup-eq {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
    margin-right: 2px;
}

.hero-mockup-eq span {
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, #a78bfa, #6366f1);
    transform-origin: bottom;
    animation: heroEqBar 1.1s ease-in-out infinite;
}

.hero-mockup-eq span:nth-child(1) { height: 55%; animation-delay: 0s; }
.hero-mockup-eq span:nth-child(2) { height: 95%; animation-delay: 0.2s; }
.hero-mockup-eq span:nth-child(3) { height: 70%; animation-delay: 0.4s; }
.hero-mockup-eq span:nth-child(4) { height: 85%; animation-delay: 0.1s; }

/* Payout toast */
.hero-toast {
    position: absolute;
    top: -5%;
    left: -12%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--dz-radius);
    background: rgba(17, 17, 19, 0.92);
    border: 1px solid rgba(52, 211, 153, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(52, 211, 153, 0.1);
    white-space: nowrap;
    opacity: 0;
    animation: heroToastCycle 9s ease-in-out infinite 2s;
}

.hero-toast-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
    font-size: 18px;
    flex-shrink: 0;
}

.hero-toast-body {
    display: inline-flex;
    flex-direction: column;
    gap: 1px;
}

.hero-toast-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--dz-text);
}

.hero-toast-meta {
    font-size: 11px;
    color: var(--dz-text-subtle);
}

.hero-toast-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #34d399;
    color: #052e22;
    font-size: 11px;
    flex-shrink: 0;
}

/* 3D tilt support */
.hero-visual {
    perspective: 1200px;
}

.hero-mockup-card {
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
    will-change: transform;
}

/* ============================================================
   How it works — launch in 3 steps
   ============================================================ */
.launch-sec {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.launch-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 45% at 50% 0%, rgba(99, 102, 241, 0.08), transparent 70%),
        radial-gradient(ellipse 45% 35% at 85% 90%, rgba(56, 189, 248, 0.05), transparent 70%);
}

.launch-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}

.launch-steps::before {
    content: "";
    position: absolute;
    top: 64px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4) 20%, rgba(56, 189, 248, 0.4) 80%, transparent);
    z-index: 0;
}

.launch-step {
    position: relative;
    z-index: 1;
    padding: 32px 26px;
    border-radius: var(--dz-radius-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--dz-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--dz-transition);
}

.launch-step:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.35);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 32px rgba(99, 102, 241, 0.1);
}

.launch-step-num {
    position: absolute;
    top: 22px;
    right: 24px;
    font-family: var(--dz-font-display);
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.launch-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 26px;
    margin-bottom: 20px;
}

.launch-step-icon--violet {
    background: rgba(139, 92, 246, 0.15);
    color: #c4b5fd;
    box-shadow: 0 0 28px rgba(139, 92, 246, 0.18);
}

.launch-step-icon--cyan {
    background: rgba(56, 189, 248, 0.14);
    color: #7dd3fc;
    box-shadow: 0 0 28px rgba(56, 189, 248, 0.16);
}

.launch-step-icon--emerald {
    background: rgba(52, 211, 153, 0.13);
    color: #6ee7b7;
    box-shadow: 0 0 28px rgba(52, 211, 153, 0.15);
}

.launch-step h3 {
    font-size: 20px !important;
    margin-bottom: 10px;
}

.launch-step > p {
    font-size: 14px !important;
    line-height: 1.65 !important;
    margin-bottom: 16px;
}

.launch-step-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.launch-step-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dz-text-muted);
}

.launch-step-list li i {
    color: #34d399;
    font-size: 13px;
    flex-shrink: 0;
}

.launch-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 44px;
}

.launch-footer-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--dz-radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--dz-text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dz-border);
}

.launch-footer-chip i {
    color: #fcd34d;
    font-size: 16px;
}

@media (max-width: 991px) {
    .launch-sec {
        padding: 72px 0;
    }

    .launch-steps {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .launch-steps::before {
        display: none;
    }
}

/* ============================================================
   Home FAQ
   ============================================================ */
.home-faq-sec {
    position: relative;
    padding: 60px 0 100px;
}

.home-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-faq-item {
    border-radius: var(--dz-radius);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--dz-border);
    overflow: hidden;
    transition: var(--dz-transition);
}

.home-faq-item:hover {
    border-color: var(--dz-border-strong);
}

.home-faq-item.open {
    border-color: rgba(139, 92, 246, 0.35);
    background: rgba(99, 102, 241, 0.04);
    box-shadow: 0 0 24px rgba(99, 102, 241, 0.06);
}

.home-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--dz-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--dz-text);
    transition: var(--dz-transition);
}

.home-faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 14px;
    color: var(--dz-text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--dz-border);
    transition: var(--dz-transition);
}

.home-faq-item.open .home-faq-icon {
    transform: rotate(45deg);
    color: #fff;
    background: var(--dz-gradient);
    border-color: transparent;
}

.home-faq-a {
    display: none;
    padding: 0 24px 20px;
}

.home-faq-a p {
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin: 0;
}

.home-faq-more {
    text-align: center;
    margin: 32px 0 0 !important;
    font-size: 14px !important;
}

.home-faq-more a {
    color: var(--dz-primary-light);
    font-weight: 600;
    text-decoration: none;
    transition: var(--dz-transition);
}

.home-faq-more a:hover {
    color: #c4b5fd;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .home-faq-sec {
        padding: 40px 0 72px;
    }

    .home-faq-q {
        padding: 16px 18px;
        font-size: 15px;
    }

    .home-faq-a {
        padding: 0 18px 16px;
    }
}

/* Mobile refinements for hero v2 */
@media (max-width: 991px) {
    .hero-trust--proof {
        justify-content: center;
    }

    .hero-toast {
        left: 0;
        top: -4%;
    }
}

@media (max-width: 575px) {
    .hero-toast {
        display: none;
    }

    .hero-trust--proof {
        flex-direction: column;
        gap: 10px;
    }

    .hero-proof-meta {
        align-items: center;
    }
}

/* ============================================================
   Sub-page header — compact hero for inner/feature pages
   ============================================================ */
.sub-hero {
    position: relative;
    padding: calc(var(--dz-header-height) + 36px) 0 36px;
    background: #000;
    border-bottom: 1px solid var(--dz-border);
    overflow: hidden;
}

.sub-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 70% at 18% 20%, rgba(99, 102, 241, 0.14) 0%, transparent 65%),
        radial-gradient(ellipse 45% 60% at 85% 45%, rgba(56, 189, 248, 0.08) 0%, transparent 65%);
}

.sub-hero .container {
    position: relative;
    z-index: 1;
}

.sub-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dz-text-subtle);
}

.sub-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--dz-text-muted);
    text-decoration: none;
    transition: var(--dz-transition);
}

.sub-breadcrumb a:hover {
    color: var(--dz-text);
}

.sub-breadcrumb > i {
    font-size: 11px;
    color: var(--dz-text-subtle);
}

.sub-breadcrumb-current {
    color: var(--dz-primary-light);
    font-weight: 600;
}

.sub-hero-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.sub-hero-text {
    max-width: 680px;
}

.sub-hero-text .sub-hero-desc {
    margin-bottom: 24px !important;
}

.sub-hero-text .sub-hero-actions {
    margin-top: 0;
}

.sub-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 16px;
    border-radius: var(--dz-radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--dz-primary-light);
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.28);
}

.sub-hero-eyebrow i {
    font-size: 14px;
}

.sub-hero-title {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.03em !important;
    font-weight: 800 !important;
    color: var(--dz-text) !important;
    margin-bottom: 12px !important;
    text-transform: none !important;
}

.sub-hero-title .gradient-text {
    background: linear-gradient(135deg, #a5b4fc 0%, #c4b5fd 45%, #7dd3fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-hero-desc {
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: var(--dz-text-muted) !important;
    margin: 0 !important;
    max-width: 620px;
}

.sub-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.sub-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--dz-border);
}

.sub-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: var(--dz-radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--dz-text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dz-border);
    transition: var(--dz-transition);
}

.sub-hero-chip:hover {
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--dz-text);
    background: rgba(99, 102, 241, 0.07);
}

.sub-hero-chip i {
    font-size: 15px;
    color: var(--dz-primary-light);
}

@media (max-width: 991px) {
    .sub-hero {
        padding: calc(var(--dz-header-height) + 24px) 0 28px;
    }

    .sub-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .sub-hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .sub-hero-actions .started-btn,
    .sub-hero-actions .started-btn-outline {
        width: 100%;
    }

    .sub-hero-meta {
        gap: 8px;
    }

    .sub-hero-chip {
        font-size: 12px;
        padding: 7px 12px;
    }
}

/* ============================================================
   Feature pages — shared hero + catalog management
   ============================================================ */
.dz-site .feature-page .feature-hero.banner-sec,
.feature-page .feature-hero.banner-sec {
    padding: calc(var(--dz-header-height) + 36px) 0 48px !important;
    position: relative;
    overflow: hidden;
    background: #000;
}

.feature-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(24px, 3.5vw, 48px);
    align-items: center;
    width: 100%;
}

.feature-hero-content {
    text-align: left;
    max-width: 620px;
}

.feature-hero-content .hero-headline {
    margin-bottom: 18px !important;
}

.feature-hero-content .hero-subtext {
    max-width: 540px;
}

.feature-hero-stats {
    margin-top: 36px;
}

.feature-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Catalog workspace mockup */
.catalog-mockup {
    position: relative;
    width: 100%;
    max-width: 440px;
    animation: heroMockupFloat 6s ease-in-out infinite;
}

.catalog-mockup-glow {
    position: absolute;
    inset: -18%;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.28) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.catalog-mockup-card {
    position: relative;
    z-index: 1;
    border-radius: var(--dz-radius-xl);
    background: rgba(17, 17, 19, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 24px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(99, 102, 241, 0.12);
    overflow: hidden;
}

.catalog-mockup-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.catalog-mockup-title {
    flex: 1;
    font-size: 12px;
    font-weight: 600;
    color: var(--dz-text-muted);
}

.catalog-mockup-body {
    padding: 16px 18px 18px;
}

.catalog-mockup-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    margin-bottom: 14px;
    border-radius: var(--dz-radius);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--dz-text-subtle);
    font-size: 12px;
}

.catalog-mockup-search i {
    font-size: 14px;
    color: var(--dz-primary-light);
}

.catalog-mockup-row {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) 0.7fr 0.45fr;
    gap: 10px;
    align-items: center;
    padding: 10px 8px;
    border-radius: var(--dz-radius-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.catalog-mockup-row--head {
    padding-top: 0;
    padding-bottom: 8px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--dz-text-subtle);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.catalog-mockup-release {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.catalog-mockup-release strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dz-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalog-mockup-release small {
    display: block;
    font-size: 11px;
    color: var(--dz-text-subtle);
    margin-top: 1px;
}

.catalog-mockup-art {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.35), rgba(99, 102, 241, 0.2));
    color: #c4b5fd;
    font-size: 16px;
}

.catalog-mockup-art--alt {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(99, 102, 241, 0.18));
    color: #7dd3fc;
}

.catalog-mockup-art--rose {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.28), rgba(139, 92, 246, 0.18));
    color: #f9a8d4;
}

.catalog-status {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border-radius: var(--dz-radius-full);
    text-align: center;
    width: fit-content;
}

.catalog-status--live {
    color: #34d399;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.25);
}

.catalog-status--pending {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.22);
}

.catalog-status--draft {
    color: var(--dz-text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.catalog-stores {
    font-size: 12px;
    font-weight: 600;
    color: var(--dz-text-muted);
    text-align: right;
}

.catalog-mockup .hero-float-card--1 {
    top: 6%;
    right: -10%;
}

.catalog-mockup .hero-float-card--3 {
    bottom: 8%;
    left: -8%;
    right: auto;
}

/* Feature content helpers */
.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    margin-bottom: 14px;
    border-radius: var(--dz-radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--dz-primary-light);
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.28);
}

.feature-pill i {
    font-size: 14px;
}

.feature-check-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dz-text-muted);
}

.feature-check-list li i {
    color: #34d399;
    font-size: 16px;
    flex-shrink: 0;
}

.catalog-page .unlock2-box-left h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
}

.catalog-page .unlock2-box-left p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 18px !important;
}

.catalog-page .unlock2-box-right img {
    border-radius: var(--dz-radius-lg);
    border: 1px solid var(--dz-border);
    box-shadow: var(--dz-shadow-lg);
}

/* DSP partnership deal cards mockup */
.dsp-deals-mockup {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 40px) clamp(16px, 3vw, 32px);
    border-radius: var(--dz-radius-xl);
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(99, 102, 241, 0.12) 0%, transparent 70%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--dz-border-strong);
    box-shadow: var(--dz-shadow-lg);
    overflow: visible;
}

.dsp-deals-sparkle {
    position: absolute;
    top: 18px;
    left: 22px;
    z-index: 2;
    color: var(--dz-neon-gold);
    font-size: 22px;
    filter: drop-shadow(0 0 8px rgba(252, 211, 77, 0.45));
    animation: dspSparklePulse 3s ease-in-out infinite;
}

.dsp-deals-stage {
    position: relative;
    width: min(100%, 420px);
    min-height: 260px;
    margin: 0 auto;
}

.dsp-deal-card {
    position: absolute;
    width: 150px;
    padding: 16px 14px 20px;
    border-radius: 18px;
    background: rgba(12, 12, 14, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    box-sizing: border-box;
}

.dsp-deal-card-head {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
    min-height: 34px;
}

.dsp-deal-radio {
    width: 16px;
    height: 16px;
    margin-top: 1px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
}

.dsp-deal-radio--checked {
    border-color: #fff;
    background: radial-gradient(circle at center, #fff 0 35%, transparent 36%);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.dsp-deal-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dz-text-muted);
    letter-spacing: 0.01em;
    word-break: break-word;
}

.dsp-deal-label-short {
    display: none;
}

.dsp-deal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 48px;
}

.dsp-deal-icon--letter {
    font-family: var(--dz-font-display);
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.dsp-deal-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-family: var(--dz-font-display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
    background: var(--dz-gradient);
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.28);
}

.dsp-deal-card--own {
    left: 0;
    bottom: 12px;
    transform: rotate(-8deg);
    z-index: 1;
}

.dsp-deal-card--dzone {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 182px;
    padding: 18px 16px 22px;
    background: rgba(18, 18, 22, 0.96);
    border-color: rgba(129, 140, 248, 0.45);
    box-shadow:
        0 0 0 1px rgba(129, 140, 248, 0.12) inset,
        0 24px 50px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(99, 102, 241, 0.18);
}

.dsp-deal-card--dzone .dsp-deal-label {
    color: var(--dz-text);
}

.dsp-deal-card--merlin {
    right: 0;
    bottom: 14px;
    transform: rotate(7deg);
    z-index: 2;
}

@keyframes dspSparklePulse {
    0%, 100% { opacity: 0.75; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

@media (max-width: 1199px) {
    .dsp-deals-stage {
        width: min(100%, 380px);
        min-height: 240px;
    }

    .dsp-deal-card {
        width: 132px;
        padding: 14px 12px 18px;
    }

    .dsp-deal-card--dzone {
        width: 168px;
    }

    .dsp-deal-icon {
        min-height: 60px;
        font-size: 42px;
    }

    .dsp-deal-icon--letter {
        font-size: 46px;
    }

    .dsp-deal-brand-mark {
        width: 48px;
        height: 48px;
        font-size: 18px;
        border-radius: 14px;
    }
}

@media (max-width: 991px) {
    .dsp-deals-mockup {
        max-width: min(100%, 440px);
    }

    .dsp-deals-stage {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        width: 100%;
        min-height: 0;
        padding: 12px 0 8px;
    }

    .dsp-deal-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: clamp(108px, 30vw, 140px);
        margin: 0 -10px;
        flex: 0 0 auto;
    }

    .dsp-deal-card--own {
        transform: rotate(-7deg) translateY(10px);
        z-index: 1;
    }

    .dsp-deal-card--dzone {
        width: clamp(128px, 34vw, 168px);
        transform: translateY(-6px) scale(1.04);
        z-index: 3;
        margin: 0 -6px;
    }

    .dsp-deal-card--merlin {
        transform: rotate(7deg) translateY(10px);
        z-index: 2;
    }

    .catalog-page .unlock2-box-right {
        overflow: visible;
    }
}

@media (max-width: 767px) {
    .dsp-deal-label-full {
        display: none;
    }

    .dsp-deal-label-short {
        display: inline;
    }

    .dsp-deal-card-head {
        min-height: 28px;
        margin-bottom: 12px;
    }
}

@media (max-width: 575px) {
    .dsp-deals-mockup {
        padding: 22px 12px 18px;
    }

    .dsp-deals-sparkle {
        top: 14px;
        left: 14px;
        font-size: 18px;
    }

    .dsp-deals-stage {
        padding: 8px 0 4px;
    }

    .dsp-deal-card {
        width: clamp(96px, 28vw, 118px);
        padding: 12px 10px 14px;
        margin: 0 -8px;
        border-radius: 14px;
    }

    .dsp-deal-card--dzone {
        width: clamp(112px, 32vw, 136px);
        padding: 14px 12px 16px;
        margin: 0 -4px;
    }

    .dsp-deal-label {
        font-size: 10px;
    }

    .dsp-deal-radio {
        width: 14px;
        height: 14px;
    }

    .dsp-deal-icon {
        min-height: 48px;
        font-size: 34px;
    }

    .dsp-deal-icon--letter {
        font-size: 38px;
    }

    .dsp-deal-brand-mark {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 12px;
    }
}

@media (max-width: 400px) {
    .dsp-deal-card {
        width: 92px;
        margin: 0 -10px;
    }

    .dsp-deal-card--dzone {
        width: 108px;
    }

    .dsp-deal-card--own,
    .dsp-deal-card--merlin {
        transform: rotate(0deg) translateY(6px);
    }

    .dsp-deal-card--dzone {
        transform: translateY(-4px) scale(1.02);
    }
}

.catalog-page .catalog-feature-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.catalog-page .unlock2-sec {
    padding: 40px 0 20px;
}

.catalog-page .catalog-benefits-sec,
.catalog-page .catalog-explore-sec {
    padding: 80px 0;
}

.catalog-page .catalog-workflow-sec {
    padding: 80px 0;
}

.catalog-page .catalog-faq-sec {
    padding: 60px 0 80px;
}

.catalog-page .catalog-benefits-grid {
    grid-template-columns: repeat(4, 1fr);
}

.feature-page .feature-hero-content.reveal-stagger > * {
    opacity: 1;
    transform: none;
}

.feature-page .feature-hero-visual.reveal {
    opacity: 1;
    transform: none;
}

.feature-page .feature-hero-stats.reveal {
    opacity: 1;
    transform: none;
}

@media (max-width: 1199px) {
    .catalog-page .catalog-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .feature-hero-layout {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .feature-hero-content {
        max-width: none;
        text-align: center;
        margin: 0 auto;
    }

    .feature-hero-content .hero-subtext {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .feature-hero-content .hero-actions,
    .feature-hero-content .hero-trust {
        justify-content: center;
    }

    .feature-hero-visual {
        max-width: min(420px, 92vw);
        margin: 0 auto;
    }

    .catalog-mockup .hero-float-card {
        display: none;
    }

    .catalog-page .catalog-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .catalog-page .unlock2-box-left {
        text-align: center;
        padding: 0 0 24px !important;
    }

    .catalog-page .unlock2-box-left .feature-check-list {
        align-items: center;
    }

    .catalog-page .unlock2-box-left .feature-check-list li {
        justify-content: center;
    }

    .catalog-page .unlock2-box-right {
        padding: 0 !important;
    }
}

@media (max-width: 575px) {
    .feature-page .feature-hero {
        padding: calc(var(--dz-header-height) + 28px) 0 36px !important;
    }

    .api-code-body {
        font-size: 12px;
        padding: 16px 14px;
    }

    .api-code-head .api-code-title {
        font-size: 11px;
    }

    .catalog-page .catalog-benefits-grid,
    .catalog-page .catalog-explore-sec .ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .catalog-mockup-row {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .catalog-mockup-row--head span:last-child,
    .catalog-mockup-row .catalog-stores {
        display: none;
    }

    .feature-hero-stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   API code snippet cards (D Zone API page)
   ============================================================ */
.api-code-card {
    border-radius: var(--dz-radius-lg);
    background: #0d0d10;
    border: 1px solid var(--dz-border-strong);
    box-shadow: var(--dz-shadow-lg), var(--dz-shadow-glow);
    overflow: hidden;
    max-width: 520px;
    margin: 0 auto;
}

.api-code-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--dz-border);
}

.api-code-dots {
    display: inline-flex;
    gap: 6px;
    flex-shrink: 0;
}

.api-code-dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.api-code-dots i:first-child {
    background: rgba(251, 113, 133, 0.6);
}

.api-code-dots i:nth-child(2) {
    background: rgba(252, 211, 77, 0.55);
}

.api-code-dots i:last-child {
    background: rgba(52, 211, 153, 0.55);
}

.api-code-title {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--dz-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.api-code-badge {
    margin-left: auto;
    flex-shrink: 0;
    padding: 3px 10px;
    border-radius: var(--dz-radius-full);
    font-size: 11px;
    font-weight: 700;
    color: var(--dz-emerald);
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.25);
}

.api-code-body {
    margin: 0;
    padding: 20px 22px;
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--dz-text-muted);
    overflow-x: auto;
}

.api-code-body code {
    font-family: inherit;
    color: inherit;
    background: none;
    padding: 0;
}

.api-code-body .tk-k {
    color: var(--dz-neon-cyan);
}

.api-code-body .tk-s {
    color: var(--dz-primary-light);
}

.api-code-body .tk-n {
    color: var(--dz-neon-gold);
}

.api-code-body .tk-v {
    color: var(--dz-emerald);
}

.api-code-body .tk-p {
    color: var(--dz-text-subtle);
}

/* ============================================================
   Modern pricing page
   ============================================================ */
.pricing-page .pricing-hero {
    padding-bottom: 58px;
}

.pricing-plans-sec {
    position: relative;
    padding: 92px 0 36px;
    background: var(--dz-bg);
}

.pricing-switcher {
    display: flex;
    width: fit-content;
    margin: 34px auto 46px;
    padding: 5px;
    border: 1px solid var(--dz-border);
    border-radius: var(--dz-radius-full);
    background: rgba(255, 255, 255, 0.025);
}

.pricing-switch {
    border: 0;
    padding: 11px 22px;
    border-radius: var(--dz-radius-full);
    color: var(--dz-text-muted);
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--dz-transition);
}

.pricing-switch.active {
    color: #fff;
    background: var(--dz-gradient);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.22);
}

.pricing-panel[hidden] {
    display: none !important;
}

.pricing-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.pricing-card-grid--center {
    grid-template-columns: minmax(300px, 520px);
    justify-content: center;
}

.pricing-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 30px;
    border: 1px solid var(--dz-border);
    border-radius: var(--dz-radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 45%),
        var(--dz-surface);
    transition: var(--dz-transition);
}

.pricing-plan-card:hover {
    transform: translateY(-5px);
    border-color: rgba(129, 140, 248, 0.35);
    box-shadow: var(--dz-shadow-lg), var(--dz-shadow-glow);
}

.pricing-plan-card--popular,
.pricing-plan-card--enterprise {
    border-color: rgba(129, 140, 248, 0.45);
    background:
        radial-gradient(circle at 90% 0%, rgba(99, 102, 241, 0.14), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 45%),
        var(--dz-surface);
}

.pricing-popular {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: var(--dz-radius-full);
    color: #c4b5fd;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.24);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pricing-plan-label {
    display: block;
    max-width: 58%;
    margin-bottom: 12px;
    color: var(--dz-text-subtle);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.pricing-plan-top h3 {
    margin: 0 0 22px;
    color: var(--dz-text);
    font-family: var(--dz-font-display);
    font-size: 27px;
    font-weight: 800;
}

.pricing-plan-price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    color: var(--dz-text);
}

.pricing-plan-price strong {
    font-family: var(--dz-font-display);
    font-size: clamp(44px, 5vw, 58px);
    line-height: 0.9;
    letter-spacing: -0.055em;
}

.pricing-currency {
    margin: 2px 4px 0 0;
    color: var(--dz-primary-light);
    font-size: 20px;
    font-weight: 800;
}

.pricing-period {
    align-self: flex-end;
    margin: 0 0 3px 8px;
    color: var(--dz-text-subtle);
    font-size: 13px;
}

.pricing-plan-top p {
    min-height: 48px;
    margin: 0 0 22px;
    color: var(--dz-text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.pricing-plan-cta {
    width: 100%;
    justify-content: center;
    margin-bottom: 26px;
}

.pricing-plan-features {
    padding-top: 24px;
    border-top: 1px solid var(--dz-border);
}

.pricing-plan-features h4 {
    margin: 0 0 16px;
    color: var(--dz-text);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pricing-plan-features ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--dz-text-muted);
    font-size: 13.5px;
    line-height: 1.5;
}

.pricing-plan-features li i {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--dz-emerald);
    font-size: 17px;
}

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 28px 0 0;
    color: var(--dz-text-subtle);
    font-size: 13px;
}

.pricing-note i {
    color: var(--dz-primary-light);
}

.pricing-empty {
    max-width: 680px;
    margin: 0 auto;
    padding: 28px;
    text-align: center;
    color: var(--dz-text-muted);
    border: 1px solid var(--dz-border);
    border-radius: var(--dz-radius-lg);
    background: var(--dz-surface);
}

.pricing-included-sec {
    padding-top: 36px;
}

.pricing-fit-sec .launch-step .eco-card-arrow {
    margin-top: auto;
    padding-top: 18px;
}

@media (max-width: 991px) {
    .pricing-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-card-grid--center {
        grid-template-columns: minmax(300px, 520px);
    }
}

@media (max-width: 767px) {
    .pricing-plans-sec {
        padding: 64px 0 28px;
    }

    .pricing-card-grid,
    .pricing-card-grid--center {
        grid-template-columns: 1fr;
    }

    .pricing-switcher {
        width: 100%;
        margin: 28px 0 34px;
    }

    .pricing-switch {
        flex: 1;
        padding: 10px 12px;
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .pricing-plan-card {
        padding: 25px 22px;
    }

    .pricing-popular {
        position: static;
        width: fit-content;
        margin-bottom: 16px;
    }

    .pricing-plan-label {
        max-width: none;
    }

    .pricing-plan-price strong {
        font-size: 46px;
    }
}

/* ============================================================
   Legal pages
   ============================================================ */
.legal-page {
    background: var(--dz-bg);
}

.legal-hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--dz-header-height) + 72px) 0 70px;
    border-bottom: 1px solid var(--dz-border);
    text-align: center;
}

.legal-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 790px;
    margin: 0 auto;
}

.legal-hero h1 {
    margin: 18px 0;
    color: var(--dz-text);
    font-family: var(--dz-font-display);
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1;
}

.legal-hero p {
    max-width: 700px;
    margin: 0 auto 24px;
    color: var(--dz-text-muted);
    font-size: 17px;
    line-height: 1.75;
}

.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid var(--dz-border);
    border-radius: var(--dz-radius-full);
    color: var(--dz-text-subtle);
    background: rgba(255, 255, 255, 0.025);
    font-size: 12px;
    font-weight: 600;
}

.legal-updated i {
    color: var(--dz-primary-light);
}

.legal-content-sec {
    padding: 76px 0 100px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 800px);
    justify-content: center;
    gap: 64px;
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: calc(var(--dz-header-height) + 24px);
}

.legal-sidebar-card {
    padding: 22px;
    border: 1px solid var(--dz-border);
    border-radius: var(--dz-radius-lg);
    background: var(--dz-surface);
}

.legal-sidebar-card > span {
    display: block;
    margin-bottom: 14px;
    color: var(--dz-text);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.legal-sidebar-card nav {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.legal-sidebar-card a {
    padding: 8px 10px;
    border-radius: var(--dz-radius-sm);
    color: var(--dz-text-subtle);
    font-size: 13px;
    line-height: 1.4;
    transition: var(--dz-transition);
}

.legal-sidebar-card a:hover {
    color: var(--dz-text);
    background: rgba(139, 92, 246, 0.1);
}

.legal-document {
    min-width: 0;
}

.legal-section {
    position: relative;
    scroll-margin-top: calc(var(--dz-header-height) + 28px);
    padding-bottom: 54px;
    margin-bottom: 54px;
    border-bottom: 1px solid var(--dz-border);
}

.legal-section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.legal-section-num {
    display: inline-flex;
    margin-bottom: 13px;
    color: var(--dz-primary-light);
    font-family: var(--dz-font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.legal-section h2 {
    margin: 0 0 22px;
    color: var(--dz-text);
    font-family: var(--dz-font-display);
    font-size: clamp(27px, 3vw, 35px);
    font-weight: 800;
    letter-spacing: -0.025em;
}

.legal-section h3 {
    margin: 28px 0 12px;
    color: var(--dz-text);
    font-size: 18px;
    font-weight: 700;
}

.legal-section p,
.legal-section li {
    color: var(--dz-text-muted);
    font-size: 15px;
    line-height: 1.85;
}

.legal-section p {
    margin: 0 0 17px;
}

.legal-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 20px;
    padding-left: 21px;
}

.legal-section li::marker {
    color: var(--dz-primary-light);
}

.legal-section strong {
    color: var(--dz-text);
    font-weight: 700;
}

.legal-section > p a,
.legal-section li a {
    color: var(--dz-primary-light);
    text-decoration: underline;
    text-decoration-color: rgba(167, 139, 250, 0.35);
    text-underline-offset: 3px;
}

.legal-callout {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    padding: 22px;
    border: 1px solid rgba(139, 92, 246, 0.22);
    border-radius: var(--dz-radius-lg);
    background: rgba(139, 92, 246, 0.06);
}

.legal-callout > i {
    flex-shrink: 0;
    color: var(--dz-primary-light);
    font-size: 24px;
}

.legal-callout h3 {
    margin: 0 0 7px;
    font-size: 16px;
}

.legal-callout p {
    margin: 0;
    font-size: 14px;
}

.legal-related {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 36px;
    padding: 24px;
    border: 1px solid var(--dz-border);
    border-radius: var(--dz-radius-lg);
    background: var(--dz-surface);
}

.legal-related span {
    display: block;
    margin-bottom: 5px;
    color: var(--dz-text-subtle);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.legal-related h3 {
    margin: 0;
    font-family: var(--dz-font-display);
    font-size: 21px;
}

.legal-related .started-btn-outline {
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 34px;
        max-width: 800px;
        margin: 0 auto;
    }

    .legal-sidebar {
        position: static;
    }

    .legal-sidebar-card nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .legal-hero {
        padding: calc(var(--dz-header-height) + 40px) 0 46px;
    }

    .legal-hero p {
        font-size: 15px;
    }

    .legal-content-sec {
        padding: 50px 0 68px;
    }

    .legal-sidebar-card nav {
        grid-template-columns: 1fr;
    }

    .legal-section {
        padding-bottom: 38px;
        margin-bottom: 38px;
    }

    .legal-section p,
    .legal-section li {
        font-size: 14px;
    }

    .legal-callout {
        padding: 18px;
    }

    .legal-related {
        align-items: flex-start;
        flex-direction: column;
    }

    .legal-related .started-btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   Site-wide responsive refinements (all pages)
   Layout-only adjustments — preserves existing visual design
   ============================================================ */

html {
    overflow-x: clip;
}

.dz-site,
.dz-site body,
body.dz-site {
    overflow-x: clip;
    max-width: 100%;
}

.dz-site img,
.dz-site svg,
.dz-site video,
.dz-site canvas,
.dz-site iframe {
    max-width: 100%;
}

.dz-site .container {
    width: 100%;
    max-width: 1280px;
}

.dz-site .row {
    margin-left: -12px;
    margin-right: -12px;
}

.dz-site .row > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    min-width: 0;
}

/* Neutralize oversized legacy banner titles on tablets */
@media (max-width: 991px) {
    .dz-site .banner-inner h1 {
        font-size: clamp(2rem, 6vw, 3rem) !important;
        line-height: 1.15 !important;
        word-break: break-word;
    }

    .dz-site .section-header {
        margin-bottom: 40px;
        padding: 0 4px;
    }

    .dz-site .section-header h2,
    .dz-site .unlock-header-left h2 {
        font-size: clamp(1.75rem, 4.5vw, 2.4rem) !important;
        line-height: 1.2 !important;
    }

    .dz-site .unlock2-box-left h2 {
        font-size: clamp(1.55rem, 3.8vw, 2.1rem) !important;
        line-height: 1.25 !important;
    }

    .dz-site .unlock2-box-wrapper {
        overflow: hidden;
    }

    .dz-site .unlock2-box-right,
    .dz-site .unlock2-box-right img,
    .dz-site .api-code-card {
        width: 100%;
        max-width: 100%;
    }

    .dz-site .feature-check-list {
        width: 100%;
    }

    .dz-site .feature-check-list li {
        text-align: left;
        word-break: break-word;
    }

    .dz-site .launch-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .dz-site .launch-footer .started-btn,
    .dz-site .launch-footer-chip {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .dz-site .sub-hero-title {
        font-size: clamp(2rem, 7vw, 3.1rem);
        line-height: 1.12;
        word-break: break-word;
    }

    .dz-site .sub-hero-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .dz-site .sub-hero-meta {
        width: 100%;
    }

    .dz-site .catalog-page .catalog-feature-img {
        height: 280px;
    }

    .dz-site .reviews-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dz-site .platform-pill,
    .dz-site .hero-chip,
    .dz-site .sub-hero-chip {
        max-width: 100%;
    }

    .dz-site .pricing-plan-top p {
        min-height: 0;
    }

    .dz-site .legal-hero h1 {
        font-size: clamp(2.2rem, 8vw, 3.4rem);
    }
}

@media (max-width: 767px) {
    .dz-site .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .dz-site .ecosystem-sec,
    .dz-site .catalog-page .catalog-benefits-sec,
    .dz-site .catalog-page .catalog-explore-sec,
    .dz-site .catalog-page .catalog-workflow-sec,
    .dz-site .pricing-included-sec,
    .dz-site .unlock-sec,
    .dz-site .made-for-sec {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .dz-site .unlock2-sec,
    .dz-site .catalog-page .unlock2-sec {
        padding-top: 28px;
        padding-bottom: 12px;
    }

    .dz-site .unlock2-box-wrapper {
        margin-bottom: 36px;
        padding: 24px 16px;
    }

    .dz-site .catalog-page .unlock2-box-left .started-btn {
        width: 100%;
        justify-content: center;
    }

    .dz-site .api-code-card {
        max-width: 100%;
    }

    .dz-site .ui-mockup {
        max-width: 100%;
    }

    .dz-site .pricing-card-grid {
        grid-template-columns: 1fr;
    }

    .dz-site .pricing-switcher {
        width: 100%;
    }

    .dz-site .expand-box {
        padding: 40px 20px !important;
    }

    .dz-site .expand-box h2 {
        font-size: clamp(1.6rem, 6vw, 2rem) !important;
        line-height: 1.2 !important;
    }

    .dz-site .home-faq-q span:first-child {
        flex: 1;
        min-width: 0;
        word-break: break-word;
    }
}

@media (max-width: 575px) {
    .dz-site .banner-inner h1,
    .dz-site .hero-headline {
        font-size: clamp(1.7rem, 8vw, 2.15rem) !important;
        line-height: 1.12 !important;
    }

    .dz-site .sub-hero {
        padding: calc(var(--dz-header-height) + 18px) 0 24px;
    }

    .dz-site .sub-hero-title {
        font-size: clamp(1.85rem, 8.5vw, 2.35rem);
    }

    .dz-site .sub-hero-chip {
        width: 100%;
        justify-content: flex-start;
    }

    .dz-site .catalog-page .catalog-feature-img,
    .dz-site .unlock2-box-right img {
        height: 220px;
        object-fit: cover;
    }

    .dz-site .api-code-card {
        border-radius: var(--dz-radius);
    }

    .dz-site .api-code-body {
        font-size: 11.5px;
        line-height: 1.65;
        padding: 14px 12px;
    }

    .dz-site .reviews-trust {
        grid-template-columns: 1fr;
    }

    .dz-site .reviews-trust-item {
        text-align: left;
    }

    .dz-site .made-for-tabs {
        gap: 6px;
    }

    .dz-site .made-for-tab {
        flex: 1 1 calc(50% - 6px);
        justify-content: center;
        text-align: center;
        padding: 10px 12px;
        font-size: 13px;
    }

    .dz-site .made-for-panel {
        padding: 24px 16px;
        gap: 28px;
    }

    .dz-site .made-for-panel h3 {
        font-size: 1.55rem !important;
    }

    .dz-site .hero-stats,
    .dz-site .feature-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .dz-site .pricing-plan-card {
        padding: 22px 18px;
    }

    .dz-site .pricing-plan-price strong {
        font-size: 42px;
    }

    .dz-site .legal-sidebar-card {
        padding: 16px;
    }

    .dz-site .legal-section h2 {
        font-size: clamp(1.45rem, 6vw, 1.85rem);
    }

    .dz-site .legal-section {
        padding-bottom: 32px;
        margin-bottom: 32px;
    }

    .dz-site .launch-step {
        padding: 24px 18px;
    }

    .dz-site .eco-card {
        padding: 22px 18px;
        min-height: 0;
    }

    .dz-site .unlock-box {
        margin-bottom: 16px;
    }

    .dz-site .unlock-box-header h3 {
        font-size: clamp(1.15rem, 5vw, 1.35rem) !important;
        line-height: 1.3 !important;
    }

    /* Prevent legacy full-viewport hero forcing excess empty space */
    .homePageBody .banner-sec {
        min-height: auto !important;
    }
}

@media (max-width: 400px) {
    .dz-site .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .dz-site .feature-hero-stats,
    .dz-site .catalog-page .catalog-benefits-grid {
        grid-template-columns: 1fr;
    }

    .dz-site .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .dz-site .made-for-tab {
        flex: 1 1 100%;
    }

    .dz-site .sub-hero-actions .started-btn,
    .dz-site .sub-hero-actions .started-btn-outline,
    .dz-site .hero-actions .started-btn,
    .dz-site .hero-actions .started-btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Landscape phones / short viewports */
@media (max-height: 500px) and (orientation: landscape) {
    .homePageBody .banner-sec {
        min-height: auto !important;
        padding-top: calc(var(--dz-header-height) + 12px) !important;
        padding-bottom: 24px !important;
    }

    .dz-site .hero-visual {
        max-width: 280px;
    }

    .dz-site .hero-float-card,
    .dz-site .hero-toast {
        display: none;
    }
}

/* ============================================================
   Home page — mobile section-by-section fixes
   ============================================================ */

.homePageBody,
.homePageBody main {
    max-width: 100%;
    overflow-x: hidden;
}

.homePageBody .container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.homePageBody .banner-inner,
.homePageBody .hero-content.banner-inner {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.homePageBody .row {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.homePageBody [class*="col-"] {
    min-width: 0;
}

@media (max-width: 991px) {
    /* 1) Hero */
    .homePageBody .banner-sec {
        min-height: auto !important;
        align-items: flex-start;
        padding: calc(var(--dz-header-height) + 20px) 0 36px !important;
        overflow-x: hidden;
    }

    .homePageBody .hero-layout {
        grid-template-columns: 1fr;
        gap: 28px;
        width: 100%;
        max-width: 100%;
    }

    .homePageBody .hero-content.banner-inner {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
        padding: 0;
    }

    .homePageBody .hero-headline,
    .homePageBody .banner-inner h1 {
        --hero-headline-size: clamp(1.85rem, 7.2vw, 2.6rem);
        font-size: var(--hero-headline-size) !important;
        line-height: 1.15 !important;
        letter-spacing: -0.03em !important;
        word-break: break-word;
        overflow-wrap: anywhere;
        max-width: 100%;
    }

    .homePageBody .hero-headline-line,
    .homePageBody .hero-gradient-text {
        display: block;
        max-width: 100%;
        white-space: normal;
    }

    .homePageBody .hero-rotate-word {
        white-space: normal;
        max-width: 100%;
    }

    .homePageBody .hero-subtext,
    .homePageBody .banner-inner p {
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 15px !important;
        line-height: 1.65 !important;
        word-break: break-word;
    }

    .homePageBody .hero-actions {
        width: 100%;
        justify-content: center;
    }

    .homePageBody .hero-trust--proof {
        justify-content: center;
        width: 100%;
        max-width: 100%;
        gap: 10px;
    }

    .homePageBody .hero-visual {
        width: 100%;
        max-width: min(420px, 100%);
        margin: 0 auto;
    }

    .homePageBody .hero-mockup,
    .homePageBody .hero-mockup-card {
        width: 100%;
        max-width: 100%;
    }

    .homePageBody .hero-stats {
        width: 100%;
        max-width: 100%;
        margin: 8px auto 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .homePageBody .hero-stat {
        min-width: 0;
    }

    /* 2) Platforms marquee */
    .homePageBody .platforms-sec {
        padding: 36px 0;
        overflow: hidden;
    }

    .homePageBody .platforms-label {
        padding: 0 8px;
        text-align: center;
        font-size: 12px;
        line-height: 1.5;
        word-break: break-word;
    }

    .homePageBody .platform-marquee {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    /* 3) Dashboard preview */
    .homePageBody .big-img-sec {
        padding: 24px 0 48px !important;
        overflow: hidden;
    }

    .homePageBody .big-img-inner {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .homePageBody .big-img-inner img {
        width: 100% !important;
        height: auto !important;
        max-width: 100%;
        display: block;
    }

    /* 4) Distribute section */
    .homePageBody .distribute-sec {
        padding: 64px 0 72px;
        overflow-x: hidden;
    }

    .homePageBody .distribute-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        min-height: 0;
        width: 100%;
    }

    .homePageBody .distribute-content {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .homePageBody .distribute-headline {
        font-size: clamp(2rem, 8vw, 2.75rem) !important;
        line-height: 1.12 !important;
        word-break: break-word;
        max-width: 100%;
    }

    .homePageBody .distribute-content p {
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 15px !important;
    }

    .homePageBody .distribute-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .homePageBody .distribute-actions .started-btn,
    .homePageBody .distribute-actions .started-btn-outline,
    .homePageBody .distribute-btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .homePageBody .distribute-platforms {
        width: 100%;
        max-width: min(420px, 100%);
        height: 320px;
        margin: 0 auto;
        overflow: hidden;
        transform: none;
    }

    .homePageBody .distribute-waves-motion {
        width: 100%;
        margin-left: 0;
    }

    /* 5) Ecosystem */
    .homePageBody .ecosystem-sec {
        padding: 64px 0;
    }

    .homePageBody .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }

    .homePageBody .eco-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .homePageBody .eco-card p,
    .homePageBody .eco-card h3 {
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    /* 6) Launch / how it works */
    .homePageBody .launch-sec {
        padding: 64px 0;
    }

    .homePageBody .launch-steps {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        margin: 0;
        gap: 12px;
    }

    .homePageBody .launch-step {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .homePageBody .launch-step p,
    .homePageBody .section-header p,
    .homePageBody .unlock-header-right p {
        word-break: break-word;
        overflow-wrap: anywhere;
        max-width: 100%;
        letter-spacing: 0 !important;
    }

    .homePageBody .launch-footer {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        text-align: center;
    }

    .homePageBody .launch-footer .started-btn,
    .homePageBody .launch-footer-chip {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        box-sizing: border-box;
        white-space: normal;
    }

    /* 7) Unlock benefits cards */
    .homePageBody .unlock-sec {
        padding: 64px 0;
        width: 100%;
    }

    .homePageBody .unloack-header {
        width: 100%;
        max-width: 100%;
        gap: 12px;
        margin-bottom: 32px !important;
    }

    .homePageBody .unlock-header-left h2 {
        font-size: clamp(1.55rem, 6.5vw, 2.2rem) !important;
        line-height: 1.2 !important;
        word-break: break-word;
        max-width: 100%;
    }

    .homePageBody .unlock-bottom .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
    }

    .homePageBody .unlock-bottom [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .homePageBody .unlock-box {
        width: 100%;
        max-width: 100%;
        min-height: 0 !important;
        height: auto !important;
        margin: 0 0 16px;
        padding: 22px 18px !important;
        overflow: visible !important;
        box-sizing: border-box;
    }

    .homePageBody .unlock-box-inner {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .homePageBody .unlock-box-header h3 {
        font-size: clamp(1.05rem, 4.5vw, 1.2rem) !important;
        line-height: 1.35 !important;
        letter-spacing: -0.01em !important;
    }

    .homePageBody .unlock-box-header p {
        font-size: 14px !important;
        line-height: 1.55 !important;
        letter-spacing: 0 !important;
        margin: 0;
    }

    .homePageBody .unlock-box .ui-mockup {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 10;
        min-height: 0;
    }

    .homePageBody .unlock-box .ui-mockup:has(.ui-portal) {
        aspect-ratio: auto;
        min-height: 190px;
        height: auto;
    }

    .homePageBody .ui-portal {
        padding: 12px;
        gap: 10px;
    }

    .homePageBody .ui-portal-top {
        gap: 8px;
        flex-wrap: wrap;
    }

    .homePageBody .ui-portal-score {
        padding: 5px 8px;
        flex-shrink: 0;
    }

    .homePageBody .ui-portal-score strong {
        font-size: 14px;
    }

    .homePageBody .ui-portal-score span {
        font-size: 8px;
    }

    .homePageBody .ui-portal-row {
        padding: 8px 10px;
        gap: 8px;
    }

    .homePageBody .lang-pills {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* 8) Made for */
    .homePageBody .made-for-sec {
        padding: 64px 0;
    }

    .homePageBody .made-for-panel {
        width: 100%;
        max-width: 100%;
        grid-template-columns: minmax(0, 1fr);
        padding: 24px 18px;
        gap: 24px;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .homePageBody .made-for-panel > * {
        min-width: 0;
        max-width: 100%;
    }

    .homePageBody .made-for-panel h3 {
        font-size: clamp(1.35rem, 5.5vw, 1.75rem) !important;
        word-break: break-word;
    }

    .homePageBody .made-for-panel p {
        width: 100% !important;
        max-width: 100% !important;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .homePageBody .made-for-visual,
    .homePageBody .made-for-visual-frame {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .homePageBody .made-for-visual-img {
        width: 100% !important;
        max-width: 100% !important;
        height: 100%;
        object-fit: cover;
    }

    .homePageBody .made-for-tabs {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .homePageBody .made-for-tab {
        flex: 1 1 calc(50% - 4px);
        min-width: 0;
        justify-content: center;
        text-align: center;
        padding: 10px 12px;
        white-space: normal;
        box-sizing: border-box;
    }

    .homePageBody .made-for-visual-stats {
        flex-wrap: nowrap;
        gap: 8px;
        padding: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        left: 0;
        right: 0;
    }

    .homePageBody .made-for-visual-stat {
        flex: 1 1 0;
        min-width: 0;
        padding: 10px 6px;
    }

    .homePageBody .made-for-visual-stat strong {
        font-size: clamp(16px, 4.5vw, 20px);
    }

    .homePageBody .made-for-visual-stat span {
        font-size: 9px;
        letter-spacing: 0.04em;
        word-break: break-word;
    }

    /* 9) Reviews */
    .homePageBody .reviews-sec {
        padding: 64px 0 72px;
    }

    .homePageBody .reviews-grid,
    .homePageBody .reviews-highlights,
    .homePageBody .reviews-trust {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .homePageBody .reviews-trust {
        grid-template-columns: 1fr 1fr;
    }

    .homePageBody .review-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .homePageBody .review-card p {
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    /* 10) Unlock2 deep-dives */
    .homePageBody .unlock2-sec {
        padding: 40px 0 24px;
    }

    .homePageBody .unlock2-box-wrapper {
        width: 100%;
        max-width: 100%;
        margin-bottom: 28px;
        padding: 20px 12px;
        box-sizing: border-box;
        overflow: visible;
    }

    .homePageBody .unlock2-box-left,
    .homePageBody .unlock2-box-right {
        width: 100%;
        max-width: 100%;
        padding: 0 !important;
        min-width: 0;
    }

    .homePageBody .unlock2-box-left h2 {
        font-size: clamp(1.45rem, 6vw, 1.9rem) !important;
        line-height: 1.25 !important;
        word-break: break-word;
        letter-spacing: -0.02em !important;
    }

    .homePageBody .unlock2-box-left p {
        letter-spacing: 0 !important;
        line-height: 1.6 !important;
        word-break: break-word;
    }

    .homePageBody .unlock2-box-right img {
        width: 100% !important;
        height: auto !important;
        max-width: 100%;
        display: block;
    }

    /* 11) FAQ */
    .homePageBody .home-faq-sec {
        padding: 48px 0 64px;
    }

    .homePageBody .home-faq-list,
    .homePageBody .home-faq-item,
    .homePageBody .home-faq-q {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .homePageBody .home-faq-q {
        white-space: normal;
        text-align: left;
        gap: 12px;
    }

    .homePageBody .home-faq-q span,
    .homePageBody .home-faq-a {
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    /* 12) Expand CTA */
    .homePageBody .expand-box {
        width: 100%;
        max-width: 100%;
        padding: 40px 18px !important;
        box-sizing: border-box;
    }

    .homePageBody .expand-box h2,
    .homePageBody .expand-box p {
        word-break: break-word;
        overflow-wrap: anywhere;
        max-width: 100%;
    }

    /* Shared section headers */
    .homePageBody .section-header {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 32px;
        box-sizing: border-box;
    }

    .homePageBody .section-header h2 {
        font-size: clamp(1.55rem, 6.5vw, 2.2rem) !important;
        line-height: 1.2 !important;
        word-break: break-word;
        overflow-wrap: anywhere;
        max-width: 100%;
    }

    .homePageBody .section-header p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575px) {
    .homePageBody .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .homePageBody .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .homePageBody .hero-actions .started-btn,
    .homePageBody .hero-actions .started-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .homePageBody .hero-trust--proof {
        flex-direction: column;
        align-items: center;
    }

    .homePageBody .hero-trust-divider {
        display: none;
    }

    .homePageBody .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .homePageBody .hero-stat-value {
        font-size: 20px !important;
    }

    .homePageBody .distribute-platforms {
        height: 280px;
        max-width: 100%;
    }

    .homePageBody .reviews-trust {
        grid-template-columns: 1fr;
    }

    .homePageBody .made-for-tab {
        flex: 1 1 100%;
        width: 100%;
    }

    .homePageBody .made-for-visual-badge {
        max-width: calc(100% - 24px);
        white-space: normal;
    }

    .homePageBody .unlock-box {
        padding: 20px 16px !important;
    }

    .homePageBody .unlock2-box-left .started-btn,
    .homePageBody .expand-box .started-btn {
        width: 100%;
        justify-content: center;
    }

    .homePageBody .hero-float-card,
    .homePageBody .hero-toast {
        display: none !important;
    }

    .homePageBody .ecosystem-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .homePageBody .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .homePageBody .hero-headline,
    .homePageBody .banner-inner h1 {
        --hero-headline-size: 1.7rem;
    }

    .homePageBody .unlock-box-header h3 {
        font-size: 1.05rem !important;
    }

    .homePageBody .ui-portal-avatar {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }
}
